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

19 lines
244 B
JavaScript

module.exports = {
template: require('../views/chat.html'),
data: function() {
return {
message: ''
}
},
methods: {
submitChat: function(e) {
e.preventDefault();
console.log(this.message);
}
}
};