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.
26 lines (25 loc) • 474 B
JavaScript
window.app = new Vue({
el: '#app',
data: {
selected: null,
options: [
{
text: 'Please select some item',
value: null
},
{
text: 'This is First option',
value: 'a'
}, {
text: 'Default Selected Option',
value: 'b'
}, {
text: 'This is another option',
value: 'c'
}, {
text: 'This one is disabled',
value: 'd',
disabled: true
}]
}
})