om/public/files.js
2018-11-29 11:40:23 +01:00

9 lines
196 B
JavaScript

Vue.component('Files', {
data: function() {
return {
count: 0
}
},
template: `<button v-on:click="count++"> You clicked me {{ count }} times. </button>`
})