https://github.com/geeks-solutions/vue-components
https://github.com/geeks-solutions/vue-components
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/geeks-solutions/vue-components
- Owner: Geeks-Solutions
- Created: 2023-06-22T19:33:47.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2026-01-21T18:13:16.000Z (5 months ago)
- Last Synced: 2026-01-22T04:27:33.550Z (5 months ago)
- Language: Vue
- Size: 2.24 MB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Agents: AGENTS.md
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
```
```