UNPKG

vue-bootstrap-layout

Version:
46 lines (31 loc) 1.09 kB
# vue-bootstrap-layout [![npm version](https://badge.fury.io/js/vue-bootstrap-layout.svg)](https://badge.fury.io/js/vue-bootstrap-layout) [Vue.js](https://github.com/vuejs/vue) components using [Bootstrap Layout](https://github.com/themekit/bootstrap-layout). ## Sample application > See the [adminplus-boilerplate-vue](https://github.com/themekit/adminplus-boilerplate-vue) repository for a sample Vue.js application. ## Build > You can easily build vue-bootstrap-layout yourself. Our build tool of choice is Webpack. You should have webpack installed globally: ```bash npm install -g webpack ``` And the build dependencies: ```bash npm install ``` > Any of the following will create the `dist/vue-bootstrap-layout.js` file: #### Production build Includes minification and several optimizations: ```bash npm run build ``` #### Development build A faster build suited for development, with no optimizations and without minification: ```bash npm run build-dev ``` ### Watch Start an initial development build and then FAST continuous incremental builds: ```bash npm run dev ```