This commit is contained in:
2019-03-06 22:52:40 +00:00
parent 6bf7ea21e7
commit 01150d82bd
2 changed files with 2 additions and 7 deletions

View File

@@ -84,7 +84,6 @@
<script> <script>
/* eslint-disable */ /* eslint-disable */
//import _ from "../utils/libs/lodash.js";
export default { export default {
beforeCreate() { beforeCreate() {
//Cache all required lt keys //Cache all required lt keys

View File

@@ -12,14 +12,10 @@
import _ from "../utils/libs/lodash.js"; import _ from "../utils/libs/lodash.js";
export default { export default {
created() { created() {
var that = this;
// debugger;
this.$gzlocale this.$gzlocale
.fetch(["Log"]) .fetch(["Log"])
.then(function() { .then(() => (this.ready = true))
that.ready = true; .catch(err => {
})
.catch(function(err) {
throw err; throw err;
}); });
}, },