19 lines
383 B
Vue
Raw Normal View History

<script lang="ts" setup>
import SwitchRoles from "./components/SwitchRoles.vue"
</script>
<template>
<div class="app-container">
2024-02-07 10:32:53 +08:00
<SwitchRoles />
2024-11-18 19:40:44 +08:00
<el-tag type="warning" size="large">
当前页面只有 admin 角色可见切换角色后将不能进入该页面
</el-tag>
</div>
</template>
2022-08-19 17:03:38 +08:00
<style lang="scss" scoped>
.el-tag {
2023-06-17 14:34:39 +08:00
margin-top: 15px;
2022-08-19 17:03:38 +08:00
}
</style>