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.

nuxt.config.{js,ts}
export default defineNuxtConfig({
  modules: [
    '@vueless/nuxt'
  ],
  ...
})

3. Import Tailwind CSS and Vueless at the top of the main CSS file.

main.css
@import "tailwindcss";
@import "vueless";

That’s it! Vueless is now ready to use in your app ✨

Last updated