This commit is contained in:
2019-02-20 20:34:02 +00:00
parent 38990fa56f
commit ff305a9b98
8 changed files with 111 additions and 21 deletions

View File

@@ -0,0 +1,39 @@
<template>
<v-layout column wrap class="my-5" align-center>
<v-flex xs12>
<v-container grid-list-xl>
<v-layout row wrap align-top></v-layout>
</v-container>
</v-flex>
</v-layout>
</template>
<script>
/* Xeslint-disable */
//import store from "../store";
import lt from "../api/locale";
//import _ from "../utils/libs/lodash.js";
export default {
components: {},
data() {
return {};
},
// beforeRouteEnter(to, from, next) {
// //Cache all required lt keys
// var ltKeysRequired = ["Inventory"].concat(WidgetList.ltKeysRequired);
// lt.fetch(ltKeysRequired).then(() => {
// next();
// });
// },
mounted() {},
methods: {
lt: function(key) {
return lt.get(key);
}
}
};
</script>
<style>
</style>