materio-d9/web/themes/custom/materiotheme/vuejs/components/Content/MainContent.vue

34 lines
684 B
Vue
Raw Normal View History

<template lang="html">
<div :id="id">
<router-view name="home" :html="html"></router-view>
<router-view name="base"></router-view>
</div>
</template>
<script>
import { mapState, mapActions } from 'vuex'
import router from 'vuejs/route'
export default {
router,
props:['id','html']
// computed: {
// ...mapState({
// token: state => state.User.token,
// isloggedin: state => state.User.isloggedin
// })
// },
// beforeMount() {
// console.log('MainContent beforeMount this.html', this.html);
// },
// mounted() {
// console.log('MainContent this.$router', this.$router);
// }
}
</script>
<style lang="scss" scoped>
</style>