[Vuejs]-PrimeVue 2 – Calendar – :date-select dosen't work properly – Vue.js2

0πŸ‘

It seems that the error lies in the way you call the date-select function. You could try using the following code:

@date-select="validarDatas('final)"

This should work since it is an emit. For more information on the API documentation and Vue.js emit mechanism, please refer to 1 and 2 respectively.

Leave a comment