Quick start (Nuxt)
1. Install Vueless Nuxt module.
npm install @vueless/nuxt
npx vueless init
2. Register @vueless/nuxt
into the Nuxt config modules
section.
export default defineNuxtConfig({
modules: [
'@vueless/nuxt'
],
...
})
3. Import Tailwind CSS and Vueless at the top of the main CSS file.
@import "tailwindcss";
@import "vueless";
That’s it! Vueless is now ready to use in your app ✨
Last updated