@igold/fe-bootstrap-vue
v0.1.11
Published
使用 Bootstrap-Vue 框架開發的 UI Library,簡化了許多的 data 設定和 template 的壓縮,免去一些邏輯的設計,快速開發你的網站。
Downloads
14
Maintainers
Readme
Fe BootStrap Vue UI Library
使用 Bootstrap-Vue 框架開發的 UI Library,簡化了許多的 data 設定和 template 的壓縮,免去一些邏輯的設計,快速開發你的網站。
Get started
Use plugin version
- BootstrapVue: v2.15.0
- Bootstrap: v4.5.0
- Vue: v2.6.11
How To Install
## With npm
$ npm i @igold/fe-bootstrap-vue
## With yarn
$ yarn add @igold/fe-bootstrap-vue
Register FeBootstrapVue in your app
import Vue from "vue";
import { FeBootstrapVue } from "@igold/fe-bootstrap-vue";
import "@igold/fe-bootstrap-vue/dist/fe-bootstrap-vue.css";
Vue.use(FeBootstrapVue)
Individual components and directives
import { FeButton, FeRow, FeCol } from "@igold/fe-bootstrap-vue";
Then add it to your component definition:
Vue.component('MyComponent', {
components: { FeButton, FeRow, FeCol }
})
Or Register them globally:
// app.js
import Vue from "vue";
import { FeButton, FeRow, FeCol } from "@igold/fe-bootstrap-vue";
Vue.component('FeButton', FeButton);
Vue.component('FeRow', FeRow);
Vue.component('FeCol', FeCol);
Designed by Aken Hu and Tony Lin
SPEC: Coda