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>
/* eslint-disable */
//import _ from "../utils/libs/lodash.js";
export default {
beforeCreate() {
//Cache all required lt keys

View File

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