Hope someone can help me! I have made a directive wrapping the Jasny Bootstrap Plugin more specifically the input-mask thing and everything goes well!
Now I have made a
Template
Component
methods: { onDateChange(event) { this.myDate = event.target.value } getFormatedDate(date) { return '2020/08/19' } }, computed: { date() { return this.getFormatedDate(this.myDate) } }