I have two js file students.js and modal.js . How to import component in modal.js inside students.js? my students.js
Vue.component('student', {
data: function(){
},
template:`
<h1>Click to edit students</h1>
// use modals.js component here..........
`
})
my modals.js
Vue.component('modal', {
template:`
<h1>This is modal.</h1>`
})