https://github.com/vasak-os/vue-libvasak
Components for Applications
https://github.com/vasak-os/vue-libvasak
component library linux template vue vuejs
Last synced: 5 months ago
JSON representation
Components for Applications
- Host: GitHub
- URL: https://github.com/vasak-os/vue-libvasak
- Owner: Vasak-OS
- License: gpl-3.0
- Created: 2023-12-20T20:13:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2026-01-25T12:46:51.000Z (6 months ago)
- Last Synced: 2026-01-26T04:13:29.937Z (5 months ago)
- Topics: component, library, linux, template, vue, vuejs
- Language: Vue
- Homepage: https://www.npmjs.com/package/@vasakgroup/vue-libvasak
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# vue-libvasak
Librería de componentes VueJS reutilizables.
## Instalación
Primero, construye la librería:
```bash
npm install
npm run build
```
Esto generará los archivos en la carpeta `dist/`.
Luego, en tu proyecto Vue:
```bash
npm install /ruta/a/vue-libvasak/dist
```
O publica el paquete en un registro npm privado/público y luego:
```bash
npm install vue-libvasak
```
## Uso
Importa los componentes que necesites:
```js
import { SideBar, SideButton, WindowFrame } from 'vue-libvasak';
```
O registra toda la librería globalmente:
```js
import * as VasakLib from 'vue-libvasak';
app.use(VasakLib);
```
## Desarrollo
- Construir la librería: `npm run build`
- Servir para desarrollo: `npm run dev`