|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Vue.js custom directive integration example (select2)</title>
|
|
|
|
<script src="../../dist/vue.js"></script>
|
|
|
|
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
|
|
<link href="http://cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/css/select2.min.css" rel="stylesheet">
|
|
|
|
<script src="http://cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/js/select2.min.js"></script>
|
|
|
|
<style>
|
|
|
|
select {
|
|
|
|
min-width: 300px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="el">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="text/x-tempalte" id="demo-template">
|
|
|
|
<div>
|
|
|
|
<p>Selected: {{ selected }}</p>
|
|
|
|
<select2 :options="options" v-model="selected">
|
|
|
|
<option disabled value="0">Select one</option>
|
|
|
|
</select2>
|
|
|
|
</div>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/x-template" id="select2-template">
|
|
|
|
<select>
|
|
|
|
<slot></slot>
|
|
|
|
</select>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
Vue.component('select2', {
|
|
|
|
props: ['options', 'value'],
|
|
|
|
template: '#select2-template',
|
|
|
|
ready: function () {
|
|
|
|
var vm = this
|
|
|
|
$(this.$el)
|
|
|
|
.val(this.value)
|
|
|
|
// init select2
|
|
|
|
.select2({ data: this.options })
|
|
|
|
// emit event on change.
|
|
|
|
.on('change', function () {
|
|
|
|
vm.$emit('input', mockEvent(this.value))
|
|
|
|
})
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
value: function (value) {
|
|
|
|
// update value
|
|
|
|
$(this.$el).select2('val', value)
|
|
|
|
},
|
|
|
|
options: function (options) {
|
|
|
|
// update options
|
|
|
|
$(this.$el).select2({ data: options })
|
|
|
|
}
|
|
|
|
},
|
|
|
|
destroyed: function () {
|
|
|
|
$(this.$el).off().select2('destroy')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// mock an event because the v-model binding expects
|
|
|
|
// event.target.value
|
|
|
|
function mockEvent (value) {
|
|
|
|
return {
|
|
|
|
target: {
|
|
|
|
value: value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var vm = new Vue({
|
|
|
|
el: '#el',
|
|
|
|
template: '#demo-template',
|
|
|
|
data: {
|
|
|
|
selected: 0,
|
|
|
|
options: [
|
|
|
|
{ id: 1, text: 'Hello' },
|
|
|
|
{ id: 2, text: 'World' }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|