axios.post(this.$root.to('/dashboard/get-contents'), data,
).then(function(res){
V.$root.messages = res.data.messages;
}).catch(function(err){
console.log(err);
});
t(key){
if(this.messages.length > 0){
if(typeof this.messages[key] !== 'undefined'){
return this.messages[key];
}
}else{
// return key;
this.debug(this.messages.length);
}
},
import myScript from '../dist/js/script.js'
new Vue({
el: '#app',
router,
template: '<App/>',
components: { App },
methods:{
myMethod(params){
// code
}
}
})
<template>
<div>
<button @click="myMethod(params)">click</button>
</div>
</template>
поэтому сделал так смотря на док