[Vuejs]-VUE 2 : Referencing VUE component inside another component's <template>. Module not found exception

4👍

import Modal from './components/Modal.vue'

Should be import Modal from './Modal.vue'

You’re already in the components folder when inside ViewOrder.vue

Leave a comment