我想始终初始化我标题上的日期选择器元素。这不适用于使用Vuejs初始化mounted
属性或created
。
以下是我的示例代码:
<template>
<input type="text" class="datepicker date-input-field-head" placeholder="Any time">
</template>
<script>
import firebase from 'firebase'
export default {
data: function() {
return {
someData: '',
}
},
mounted() {
$('.datepicker').pickadate({
selectMonths: true, // Creates a dropdown to control month
selectYears: 120, // Creates a dropdown of 120 years to control year,
today: 'Today',
clear: 'Clear',
hiddenName: true,
formatSubmit: 'yyyy-mm-dd',
close: 'Ok',
container: '.wrapper-dj-picker',
closeOnSelect: false // Close upon selecting a date,
});
}
}
</script>
我的标题总是显示在我的应用程序上,我在我的App.vue上实现了它(也尝试使用挂载初始化元素但没有成功)
我真的坚持这个问题几个小时,任何帮助都表示赞赏。