2024-03-08 21:12:48 +08:00

17 lines
371 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script lang="ts" setup>
import SwitchRoles from "./components/SwitchRoles.vue"
</script>
<template>
<div class="app-container">
<SwitchRoles />
<el-tag type="warning" size="large">当前页面只有 admin 角色可见切换角色后将不能进入该页面</el-tag>
</div>
</template>
<style lang="scss" scoped>
.el-tag {
margin-top: 15px;
}
</style>