Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 504 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 504 Bytes

VueBento

VueBentoはCSSフレームワーク「MUSUBii」ベースに作られたAtomicDesign思想のコンポーネントライブラリです。

Setup

# npm
npm i -D vue-bento
# yarn
yarn add vue-bento

Import

import Vue from 'vue';
import App from './App.vue';

import VueBento from 'vue-bento';
import 'vue-bento/dist/vue-bento.css'; // cssいらない場合は外す

Vue.use(VueBento);

new Vue({
  el: '#app',
  render: h => h(App)
});