Answer the question
In order to leave comments, you need to log in
The Vue component has a @click="remove" function. How to call this function inside the main vue?
Vue.component('add-edu', {
template: `
<div class="gray_dashed">
<i class="fas deleteForm fa-times" v-on:click="remove"></i>
</div>
`
});
new Vue({
el: '.midMain',
data: {
mes: 'sds'
},
methods:{
remove: function() {
this.mes = 'Привет';
}
}
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question