码迷,mamicode.com
首页 > 其他好文 > 详细

使用is动态切换组件

时间:2020-04-15 21:40:40      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:div   ted   exp   ack   nts   动态切换   edit   管理者   get   

<template>
  <div class="dashboard-container">
    <!-- 根据角色,切换组件 -->
    <component :is="currentRole" />
  </div>
</template>

<script>
import { mapGetters } from ‘vuex‘
import adminDashboard from ‘./admin‘ // 管理者组件
import editorDashboard from ‘./editor‘ // 编辑者组件

export default {
  name: ‘Dashboard‘,
  components: { adminDashboard, editorDashboard },
  data() {
    return {
      currentRole: ‘adminDashboard‘
    }
  },
  computed: {
    // 在组件中引入mapGetters就是将vuex中的数据映射到组件的计算属性当中
    ...mapGetters([
      ‘roles‘
    ])
  },
  created() {
    if (!this.roles.includes(‘admin‘)) {
      this.currentRole = ‘editorDashboard‘
    }
  }
}
</script>
 
 

使用is动态切换组件

标签:div   ted   exp   ack   nts   动态切换   edit   管理者   get   

原文地址:https://www.cnblogs.com/star-meteor/p/12708185.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!