Have problem with handle even @click to the div class="fileInfo" What am I doing wrong ?
var InfoComponent = Vue.extend({
template:'<div> {{{component}}} </div>',
data:function(){
return{
infoContent:'',
component:''
}
},
methods:{
createInfoElem:function(){
this.component = "<div class='fileInfo' @click='removeInfoElem'>X</div>"
},
removeInfoElem:function(){
console.log('removed');
},
}
})