利用纯Vue.js构建Bootstrap组件

前端之家收集整理的这篇文章主要介绍了利用纯Vue.js构建Bootstrap组件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

没有jQuery,bootstrap.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 (required ^0.12,test with 0.12.10).

(required 3.x.x,test with 3.3.5). VueStrap doesn't depend on a very precise version of Bootstrap. Just pull the latest.

CommonJS

var alert = require('vue-strap/src/alert');
// or
var alert = require('vue-strap').alert;

new Vue({
components: {
'alert': alert
}
})

ES6

import alert from 'vue-strap/src/alert'
// or
import { alert } from 'vue-strap'

new Vue({
components: {
alert
}``
})

AMD

define(['vue-strap'],function(VueStrap) { var alert = VueStrap.alert; ... });

本文已被整理到了《》,欢迎大家学习阅读。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/vue/44673.html

猜你在找的Vue相关文章