An open API service indexing awesome lists of open source software.

https://github.com/geeks-solutions/vue-components


https://github.com/geeks-solutions/vue-components

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# Vue Components

- [✨  Release Notes](/CHANGELOG.md)

## Quick Setup

Install the module to your Nuxt application with one command:

```bash
npx nuxi module add @geeks.solutions/vue-components
```

That's it! You can now use Vue Components in your Nuxt app ✨

## Contribution

Local development

```bash
# Install dependencies
npm install

# Declare the library for NPM

npm link

# Generate type stubs so /dist points to src for live development

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 install
npm run prepack
npm publish

```

```