This commit is contained in:
2018-11-16 19:02:39 +00:00
parent 7f8dca456a
commit afc1e361fe
5 changed files with 23 additions and 41 deletions

View File

@@ -1,15 +1,14 @@
<template>
<div>
<span>{{log()}}</span>
</div>
<div>
<span>{{log()}}</span>
</div>
</template>
<script>
/* xeslint-disable */
import logger from "../utils/logit";
//import lt from "../api/locale";
//import store from "../store";
import store from "../store";
export default {
data() {
return {};
@@ -18,7 +17,7 @@ export default {
mounted() {},
methods: {
log: function() {
logger.getLogText();
return store.state.logArray;
}
}
};