0π
β
In your SmartPlan.vue forgot to put a showModal data in your data model. Put this like this one
export default {
name: 'SmartPlan',
data() {
return {
showModal:false
}
}
props: {
},
components: {
modal
}
}
Source:stackexchange.com