@igold/fe-bootstrap-vue

0.1.11 • Public • Published

Fe BootStrap Vue UI Library

使用 Bootstrap-Vue 框架開發的 UI Library,簡化了許多的 data 設定和 template 的壓縮,免去一些邏輯的設計,快速開發你的網站。

Get started

Use plugin version

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

Dependents (0)

Package Sidebar

Install

npm i @igold/fe-bootstrap-vue

Weekly Downloads

0

Version

0.1.11

License

none

Unpacked Size

14.2 MB

Total Files

153

Last publish

Collaborators

  • akenhu69