Components Test
Features
- ⛰ Foo
- 🚠 Bar
- 🌲 Baz
Quick Setup
- Add
components-test
dependency to your project
# Using pnpm
pnpm add -D components-test
# Using yarn
yarn add --dev components-test
# Using npm
npm install --save-dev components-test
- Add
components-test
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: ["components-test"],
});
That's it! You can now use Components Test in your Nuxt app ✨
Development
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release