1
0
mirror of https://github.com/cp6/my-idlers.git synced 2024-09-29 03:37:08 +02:00
my-idlers/public/js/addService.js

11 lines
159 B
JavaScript
Raw Normal View History

var vm = new Vue({
data: {
key: ""
},
methods: {
onChange(event) {
console.log(event.target.value)
}
}
});