Vue.component('hello-world', {
template: '#hello-world-template',
data : function () {
return{message : 'привет',
products : [0,1,2,2,3]}
},
mounted : function () {
this.products()
},
methods : {
products : function () {
alert()
}
}
})