0๐
I managed to solve it using the following
created(){
this.serio = false;
if (this.$route.path === '/whatsapp') {
this.serio = true;
}
},
watch: {
async $route(to, from) {
this.serio = false;
if (this.$route.path === '/whatsapp') {
this.serio = true;
}
}
}
- [Vuejs]-Interpolation in a Vue component that creates HTML
- [Vuejs]-Trying to Validate a vue-form generator form fields
Source:stackexchange.com