moved t function to global and misc cleanup

This commit is contained in:
2020-04-04 17:06:25 +00:00
parent 90c388ecc2
commit 43de3c8fb0
20 changed files with 242 additions and 286 deletions

View File

@@ -179,7 +179,6 @@ Vue.directive("focus", {
}
});
/////////////////////////////////////////////////////////////////
// INSTANTIATE
//
@@ -194,5 +193,5 @@ new Vue({
vuetify: Vuetify,
router,
store,
render: (h) => h(App)
render: h => h(App)
}).$mount("#app");