bootstrap-vue
Version:
BootstrapVue provides one of the most comprehensive implementations of Bootstrap 4 components and grid system for Vue.js and with extensive and automated WAI-ARIA accessibility markup.
42 lines (41 loc) • 627 B
JavaScript
window.app = new Vue({
el: '#app',
data: {
items: [
{
text: 'Home',
href: 'https://bootstrap-vue.github.io'
},
{
text: 'Admin',
href: '#',
active: false
},
{
text: 'Manage',
href: '#'
},
{
text: 'Library'
}
],
items2: [
{
text: 'Home',
href: 'https://bootstrap-vue.github.io'
},
{
text: 'Admin',
href: '#',
active: true
},
{
text: 'Manage',
href: '#'
},
{
text: 'Library'
}
]
}
})