Nuxt Module
For your Nuxt projects, Artivue is shipped with a Nuxt module
Installation
bash
pnpm add @artivue/nuxt
bash
yarn add @artivue/nuxt
bash
npm install @artivue/nuxt
Add the module
typescript
// nuxt.config.ts
export default defineNuxtConfig({
modules: [
'@artivue/nuxt',
],
artivue: {
// Accepts the same configuration as the Vue plugin
},
})