inject home html content into vue componenent MainContent

This commit is contained in:
2019-05-23 18:11:06 +02:00
parent 5d2a8bc73b
commit 72dca11b5e
4 changed files with 41 additions and 39 deletions

View File

@@ -0,0 +1,21 @@
<template lang="html">
<div id="main-content" v-html="html"></div>
</template>
<script>
import { mapState, mapActions } from 'vuex'
export default {
props:['html'],
computed: {
...mapState({
token: state => state.User.token,
isloggedin: state => state.User.isloggedin
})
}
}
</script>
<style lang="scss" scoped>
</style>