Vueless Docs
ComponentsGitHubWebsite
  • Installation
    • Quick start (Vue)
    • Quick start (Nuxt)
    • Class autocompletion
    • Minimal requirements
    • Storybook docs
  • Global customization
    • General
    • Colors
    • Rounding
    • Focus Outline
    • Dark mode
    • Base Classes
    • Custom tailwind classes
  • Component customization
    • General
    • Styling
    • Conditional styling
    • Extends styling from keys
    • Nested components styling
    • Classes smart merging
    • Props defaults
    • Redefining props
    • Defining custom props
    • Internationalization (i18n)
  • Creating own components
    • Vueless file structure
    • Create new component
    • Copy existing component
  • Svg Icons
    • General usage
    • Custom icons
    • Dynamic import
    • Advanced settings
  • Helpers
    • Change settings in runtime
Powered by GitBook
On this page
  1. Installation

Quick start (Nuxt)

1. Install Vueless package.

npm install @vueless/nuxt
npx vueless init
yarn add @vueless/nuxt
yarn vueless init
pnpm add @vueless/nuxt
pnpm exec vueless init
bun add @vueless/nuxt
bunx vueless init

2. Register @vueless/nuxt module to the Nuxt config modules section.

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

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

Last updated 2 months ago