1
0
mirror of https://github.com/exane/not-gwent-online synced 2025-01-29 14:28:30 +00:00

19 lines
244 B
JavaScript
Raw Normal View History

2015-06-21 21:20:17 +02:00
module.exports = {
2015-06-22 20:21:31 +02:00
template: require('../views/chat.html'),
data: function() {
return {
message: ''
}
},
methods: {
submitChat: function(e) {
e.preventDefault();
console.log(this.message);
}
}
2015-06-21 21:20:17 +02:00
};