Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moulibheemaneti/mb-nuxt-ui-kit
A new UI Kit only supported for Nuxt3
https://github.com/moulibheemaneti/mb-nuxt-ui-kit
mouli-bheemaneti npm-package nuxt3 typescript ui-kit yarn
Last synced: about 10 hours ago
JSON representation
A new UI Kit only supported for Nuxt3
- Host: GitHub
- URL: https://github.com/moulibheemaneti/mb-nuxt-ui-kit
- Owner: moulibheemaneti
- License: mit
- Created: 2023-09-15T01:45:53.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-16T09:27:20.000Z (over 1 year ago)
- Last Synced: 2025-02-07T17:34:17.988Z (6 days ago)
- Topics: mouli-bheemaneti, npm-package, nuxt3, typescript, ui-kit, yarn
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/mb-nuxt-ui-kit
- Size: 138 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# MB Nuxt UI Kit
[![npm version][npm-version-src]][npm-version-href]
[![npm downloads][npm-downloads-src]][npm-downloads-href]
[![License][license-src]][license-href]
[![Nuxt][nuxt-src]][nuxt-href]My new Nuxt module for doing amazing things.
- [β¨ Β Release Notes](/CHANGELOG.md)
- [π Online playground](https://stackblitz.com/github/moulibheemaneti/mb-nuxt-ui-kit?file=playground%2Fapp.vue)## Quick Setup
1. Add `mb-nuxt-ui-kit` dependency to your project
```bash
# 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
```2. Add `mb-nuxt-ui-kit` to the `modules` section of `nuxt.config.ts`
```js
export default defineNuxtConfig({
modules: [
'mb-nuxt-ui-kit'
]
})
```That's it! You can now use My Module in your Nuxt app β¨
## Development
```bash
# 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
```[npm-version-src]: https://img.shields.io/npm/v/mb-nuxt-ui-kit/latest.svg?style=flat&colorA=18181B&colorB=28CF8D
[npm-version-href]: https://npmjs.com/package/mb-nuxt-ui-kit[npm-downloads-src]: https://img.shields.io/npm/dm/mb-nuxt-ui-kit.svg?style=flat&colorA=18181B&colorB=28CF8D
[npm-downloads-href]: https://npmjs.com/package/mb-nuxt-ui-kit[license-src]: https://img.shields.io/npm/l/mb-nuxt-ui-kit.svg?style=flat&colorA=18181B&colorB=28CF8D
[license-href]: https://npmjs.com/package/mb-nuxt-ui-kit[nuxt-src]: https://img.shields.io/badge/Nuxt-18181B?logo=nuxt.js
[nuxt-href]: https://nuxt.com