# vue-strap **Repository Path**: shamorkFu/vue-strap ## Basic Information - **Project Name**: vue-strap - **Description**: Bootstrap components built with Vue.js - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-17 - **Last Updated**: 2021-11-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vue-strap Bootstrap components built with Vue.js. This repository contains a set of native Vue.js components based on Bootstrap's markup and CSS. As a result no dependency on jQuery or Bootstrap's JavaScript is required. The only required dependencies are: * [Vue.js](http://vuejs.org/) (required ^v2.x.x, test with v2.0.3). * [Bootstrap CSS](http://getbootstrap.com/) (required 3.x.x, test with 3.3.6). VueStrap doesn't depend on a very precise version of Bootstrap. ## Installation ### NPM ```bash $ npm install vue-strap ``` ### CommonJS ```js var alert = require('vue-strap/src/alert'); // or var alert = require('vue-strap').alert; new Vue({ components: { 'alert': alert } }) ``` ### ES6 ```js import alert from 'vue-strap/src/alert' // or import { alert } from 'vue-strap' new Vue({ components: { alert } }) ``` ### AMD ```js $ bower install vue-strap define(['vue-strap'], function(VueStrap) { var alert = VueStrap.alert; ... }); ``` ### Browser globals The `dist` folder contains `vue-strap.js` and `vue-strap.min.js` with all components exported in the window.VueStrap object. These bundles are also available in [CDNJS](https://cdnjs.com/libraries/vue-strap), and on both the Bower and NPM packages. ```html ``` ## Docs See the [documentation](https://wffranco.github.io/vue-strap/) with live editable examples. ## Local Setup * Install with `npm install` * Run the docs site in development mode with `npm run docs`. This will watch for file changes as you work. * Build with `npm run build`. ## TODO See [Roadmap](https://github.com/yuche/vue-strap/issues/41) ## License vue-strap is licensed under [The MIT License](LICENSE).