1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2024-11-22 08:31:33 +00:00
The-Modding-Tree/js/v.js

32 lines
482 B
JavaScript
Raw Normal View History

2020-08-19 02:50:24 +00:00
var app;
function loadVue() {
app = new Vue({
el: "#app",
data: {
player,
2020-08-21 19:02:34 +00:00
tmp,
2020-08-19 02:50:24 +00:00
format,
formatWhole,
2020-08-24 02:01:14 +00:00
formatTime,
2020-08-19 02:50:24 +00:00
layerUnl,
getLayerEffDesc,
doReset,
buyUpg,
getEnhancerCost,
getExtCapsuleCost,
getSpace,
2020-08-19 19:53:14 +00:00
getSpaceBuildingsUnl,
2020-08-19 02:50:24 +00:00
getSpaceBuildingCost,
getSpaceBuildingEffDesc,
buyBuilding,
LAYERS,
LAYER_RES,
LAYER_TYPE,
LAYER_UPGS,
LAYER_EFFS,
2020-08-25 22:42:43 +00:00
LAYER_AMT_NAMES,
LAYER_RES_CEIL
2020-08-19 02:50:24 +00:00
},
})
}