mb-nuxt-ui-kit
v0.0.4
Published
A new UI Kit for Nuxt3.
Downloads
3
Readme
MB Nuxt UI Kit
My new Nuxt module for doing amazing things.
Quick Setup
- Add
mb-nuxt-ui-kit
dependency to your project
# Using pnpm
pnpm add -D mb-nuxt-ui-kit
# Using yarn
yarn add --dev mb-nuxt-ui-kit
# Using npm
npm install --save-dev mb-nuxt-ui-kit
- Add
mb-nuxt-ui-kit
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: [
'mb-nuxt-ui-kit'
]
})
That's it! You can now use My Module in your Nuxt app ✨
Development
# Install dependencies
yarn install
# Generate type stubs
yarn dev:prepare
# Develop with the playground
yarn dev
# Build the playground
yarn dev:build
# Run ESLint
yarn lint
# Run Vitest
yarn test
yarn test:watch
# Release new version
yarn release