23 lines
497 B
Vue
Raw Normal View History

<script lang="ts" setup>
import { useRouter } from "vue-router"
import SwitchRoles from "./components/SwitchRoles.vue"
const router = useRouter()
const handleRolesChange = () => {
2022-08-19 17:03:38 +08:00
router.push({ path: "/403" })
}
</script>
<template>
<div class="app-container">
2022-08-19 17:03:38 +08:00
<el-tag type="success" size="large"> 当前页面只有 admin 权限可见 </el-tag>
<SwitchRoles @change="handleRolesChange" />
</div>
</template>
2022-08-19 17:03:38 +08:00
<style lang="scss" scoped>
.el-tag {
margin-bottom: 15px;
}
</style>