Giannis Koutsaftakis
Giannis Koutsaftakis
Thanks @Demivan, opened an issue here: https://github.com/bcoe/c8/issues/355
Here's what worked for me using `nuxt 3.4.2` Added ``` build: { transpile: ['vue-toastification'] }, css: ['vue-toastification/dist/index.css']` ``` to `nuxt.config.ts` Added `plugins/vue-toastificaton.client.ts` ``` import Toast, { PluginOptions } from 'vue-toastification'...
For anyone still looking for a solution for this, you can create a plugin that registers a `$toast` method and then you can use `this.$toast` inside your options API components....
@webdevgr καλή μουσικούλα, πάνω κάνει ζέστη το καλοκαίρι.
Hey @potofcoffee, normally the dataset should set the current page to `1` after the data updates. Which version of Vue are you using?
useAsyncData in middleware gives warning to use $fetch when changing route to the same pageComponent
Confirming that I have the same issue with lucia-auth middleware.
useAsyncData in middleware gives warning to use $fetch when changing route to the same pageComponent
> Confirming that I have the same issue with lucia-auth middleware. I managed to fix it using `useRequestFetch()` instead. https://github.com/nuxt/nuxt/issues/23423
Anyone still looking for an alternative to `vue-js-modal` for Vue 3 can also check [`vue-modal`](https://github.com/kouts/vue-modal/tree/next)
Hey @tonykaralis, `vue-dataset` doesn't include any styling by default. The examples rely on Bootstrap 4 CSS for styling, you can include it via CDN for your tests, but I would...
Hey @tonykaralis, there's an example on the `next` branch as well: https://next--vue-dataset-demo.netlify.app/examples/datatable/ If you can post a Stackblitz or a Codesandbox reproduction of your issue maybe we can pinpoint the...