0.1.11 • Published 4 years ago

@igold/fe-bootstrap-vue v0.1.11

Weekly downloads
-
License
-
Repository
gitlab
Last release
4 years ago

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

0.1.11

4 years ago

0.1.10

4 years ago

0.1.1-0.0

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago