This commit is contained in:
2019-03-07 18:30:53 +00:00
parent c3020ac34a
commit 399143cc70
5 changed files with 26 additions and 9 deletions

View File

@@ -8,7 +8,7 @@
</template>
<script>
/* Xeslint-disable */
/* eslint-disable */
export default {
created() {
var outText = "";
@@ -16,13 +16,13 @@ export default {
outText += value + "\n";
});
this.logText = outText;
this.$gzlocale
.fetch(["Log"])
.then(() => (this.formReady = true))
.catch(err => {
this.formReady = true;
throw err;
this.$gzerror(err);
//throw err;
});
},
data() {