33 lines
707 B
Vue
33 lines
707 B
Vue
<template>
|
||
<div class="app-container">
|
||
<div style='margin-bottom:15px;'>你的权限: {{roles}}</div>
|
||
切换权限:
|
||
<el-radio-group v-model="role">
|
||
<el-radio-button label="editor"></el-radio-button>
|
||
</el-radio-group>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { mapGetters } from 'vuex';
|
||
export default{
|
||
data() {
|
||
return {
|
||
role: ''
|
||
}
|
||
},
|
||
computed: {
|
||
...mapGetters([
|
||
'roles'
|
||
])
|
||
},
|
||
watch: {
|
||
role(val) {
|
||
this.$store.dispatch('ChangeRole', val).then(() => {
|
||
this.$router.push({ path: '/permission/index?' + +new Date() });
|
||
})
|
||
}
|
||
}
|
||
}
|
||
</script>
|