Nedelcescu Radu Costin
Results
2
comments of
Nedelcescu Radu Costin
trafficstars
Using the following libraries: ` "vue-chartjs": "^4.1.1", "chart.js": "^3.9.1"` and the following import statement `import { Line } from 'vue-chartjs'` `import { Chart, LineElement, PointElement, CategoryScale } from 'chart.js/dist/chart.mjs'` In...
Another way to use vue-toastification with vue3 and nuxt3: Create `vue-toastification.client.js` in `/plugins` with the following content: ``` import Toast from 'vue-toastification/dist/index.mjs' export default defineNuxtPlugin((nuxtApp) => { nuxtApp.vueApp.use(Toast, {}) })...