我使用了VUEJS 2日期选择器,我想从方法中调用一个函数,但它不起作用。控制台很清楚,没有错误。如果我在另一个div/元素上调用该函数,一切都正常。当我单击特定元素时,我如何调用该函数?
Used datepicker
标签
<date-picker @click="checkRef" class="customDateInput" format="DD-MM-YYYY" v-model="dataStare"></date-picker>
功能
methods: {
checkRef () {
const input = this.$el.querySelector('.customDateInput > .mx-input-wrapper > .mx-input')
input.setAttribute("inputmode", "none")
console.log(this.$el.querySelector('.asd > .mx-input-wrapper > .mx-input'))
}
}
1条答案
按热度按时间jhdbpxl91#
对于vue 2-datepicker,您需要使用它们的可用事件来调用您的方法。
日期输入格式为年-月-日