jeanettephung
jeanettephung
Hi there! According to this [blog post](https://medium.com/@Pelle_Jacobs/typescript-declaration-files-of-external-libraries-an-introduction-to-typings-b3d1fbaa07c7), add this as a placeholder for the zingtouch module in the *.d.ts file: ``` declare module 'zingtouch' { var main: any export =...
Globally register ZingChartVue component into NuxtJS app by registering it as a [client-side component plugin](https://stackoverflow.com/questions/72795528/how-to-use-a-vue3-componentvue-draggable-next-inside-nuxt-3-project-as-a-plugi). `plugins/zingchart-vue.client.js` ``` import ZingChartVue from "zingchart-vue"; export default defineNuxtPlugin((nuxtApp) => { nuxtApp.vueApp.component("ZingChartVue", ZingChartVue); }); ```
The `zingchart` variable is not accessible right away. It can only be accessed right before the component is mounted. Therefore, `zingchart` can only be accessed in `onBeforeMounted` lifecycle hook. ```...
@agois83 Should we consider creating a NuxtJS integration docs page? There are at least two useful information required in using `zingchart-vue` in a NuxtJS application. 1. The `` tag is...
Hi @tanoramb, I confirmed that ZingChart works with the latest version of jQuery v3.7.0 and the version listed in the README (2.1.4). I checked against the examples on the [integrations...