This commit is contained in:
2018-11-16 00:18:15 +00:00
parent 6364b328bc
commit f5724f40cb
4 changed files with 15 additions and 9 deletions

View File

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