Quick start (Nuxt)
1. Install Vueless Nuxt module.
npm install @vueless/nuxt
npx vueless inityarn add @vueless/nuxt
yarn vueless init --yarnpnpm add @vueless/nuxt
pnpm exec vueless init --pnpmbun add @vueless/nuxt
bunx vueless init2. 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