The-Modding-Tree/js/v.js

29 lines
426 B
JavaScript
Raw Normal View History

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