Yuri Soares
Yuri Soares
I'm using vue-masked-input to apply a credit card mask on my input, but the `required` validation from Vuelidate is not being called. ```javascript Campo obrigatório ``` This is my code,...
Is it possible to call vue-bulma-notification from vue-bulma-modal to be show on top of the CardModal, ignoring the modal-background?
```javascript mounted () { if (!this.datepicker) { this.config.onValueUpdate = this.dateUpdated this.datepicker = new Flatpickr(this.$el, this.config) this.setDate(this.value) } this.$watch('config', this.redraw) this.$watch('value', this.setDate) }, methods: { redraw (newConfig, oldConfig) { console.log('oldConfig: ',...