UNPKG

acute-framework

Version:

The Acute Framework is a (relatively) lightweight Vue.js component framework designed for Bootstrap users who want a bit more control over their layouts.

15 lines (12 loc) 279 B
import Vue from 'vue' import App from './App.vue' import router from './router' import store from './store' import AcuteFramework from "../index.js"; Vue.use(AcuteFramework); Vue.config.productionTip = false new Vue({ router, store, render: h => h(App) }).$mount('#app')