我如何讓Vue知道datepicker更改日期?讓Vue註冊datepicker事件
new Vue({
el: '#app',
data: {
termin: ''
},
computed: {
},
methods: {
}
})
只是一個輸入框:
<div id="app">
<div class="uk-form-icon"><i class="uk-icon-calendar"></i>
<input name="termin" v-model="termin" value="" placeholder="Choose date" type="text" data-uk-datepicker="{format:'DD.MM.YYYY'}" required="required">
</div>
<p>
Date: {{termin}}
</p>
</div>
如果恰克的手Vue公司得到它的輸入字段,但觸發選擇器後不。
https://jsfiddle.net/Honkoman/dfohvcpk/
這兩種方法在某種程度上我得到'[VUE警告]:掛載鉤子錯誤:「TypeError:$不是函數」。看起來像jquery不知道...? – Mike
@Mike聽起來很喜歡它。你需要確保jQuery被加載。 – Bert
好吧。甚至在所有其他之前 – Mike