George Anderson
George Anderson
Currently, this is how I do it ```javascript import rough from 'roughjs' let startX, startY, endX, endY, node const svg = document.getElementById('svg') const roughSVG = rough.svg(svg); function pointerMove(e) { if...
Hello, what is the difference between `@nuxt/types` and `@nuxt/vue-app`? When generating a fresh Nuxt TypeScript app, you'll get `@nuxt/types` in the `types` property of `tsconfig.json` already. But in the `README`...
So in the docs, you can import stores outside a component and create helpers outside of the setup method. How would someone use `useMutation` for example, in a Nuxt plugin?...
So we have a published component before, and we do this to publish `vue-cli-service build --target lib --dest dist/lib --name VueComponentName 'src/components/VueComponentName.vue'` Our `main.js` file is like this: ```javascript import...
Hi, is there an equivalent of ```js app.use(express.static(`${root}/dist/client`, { index: false })) ``` in h3? Thanks
Hi, it looks like `nuxtServerInit` ain't working when `nuxt-vite` and `nuxt-typed-vuex` are both in `buildModules`. Here's a simple reproduction https://github.com/mirabledictu/test-vuex-vite I have a simple console log there ```js export const...