[Vuejs]-Vue-cli cannot show modal window

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
  }
}

Leave a comment