boot-components

Componentes


Keywords
boot, components, boot components, boot-components
License
MIT
Install
npm install boot-components@0.1.18

Documentation

boot-components

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Customize configuration

See Configuration Reference.

Uso

// main.js
import { createApp } from 'vue'
import App from '@/App.vue'
import 'boot-components/dist/boot-components.css';
import bootComponents from 'boot-components';
// ...

const app = createApp(App)

app.use(bootComponents)
app.mount('#app')