1
0
mirror of https://github.com/exane/not-gwent-online synced 2025-10-09 07:39:08 +00:00

move register into his own component

This commit is contained in:
devfake
2015-06-23 14:32:26 +02:00
parent 01f54264e7
commit 75990b84c7
6 changed files with 29 additions and 12 deletions

View File

@@ -0,0 +1,10 @@
module.exports = {
template: require('./../views/login.html'),
inherit: true,
methods: {
}
};

View File

@@ -0,0 +1,16 @@
module.exports = {
template: require('./../views/register.html'),
inherit: true,
methods: {
register: function(e) {
e.preventDefault();
console.log("bal");
return false;
}
}
};