0.1.1 • Published 6 months ago
@corvina/vue-components-library v0.1.1
Corvina Components Library
Alpha version of the Corvina Components Library. This library is a collection of vue components aimed to be used in the Corvina App.
Installation
To install the package run the following command:
npm install @corvina/vue-components-library
Usage
Add to your vue application the corvina components:
import { createApp } from 'vue'
import App from './App.vue'
import vuetify from './plugins/vuetify'
import CorvinaComponents from "@corvina/vue-components-library"
import "@corvina/vue-components-library/vue-components-library.css"
createApp(App)
.use(vuetify)
.use(CorvinaComponents)
.mount('#app')
and add reference to css and font to your code.