Fix some issues + last stand

Signed-off-by: Josef Fröhle <github@josef-froehle.de>
This commit is contained in:
2020-06-25 14:57:42 +02:00
parent 4a2526d691
commit 63024ffe8f
22 changed files with 1977 additions and 590 deletions

19
assets/js/calculator.js Normal file
View File

@@ -0,0 +1,19 @@
var calculator = new Vue({
el : '#calculator',
data : {
//guilds: new Array(10)
guilds: [
'',
'G1',
'G2',
'G3',
'G4',
'G5',
'G6',
'G7',
'G8',
'G9',
'G10',
]
}
});