2024-11-28 14:44:27 +08:00

19 lines
393 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-card shadow="never" class="content">
当前页面只有Admin角色可见切换角色后将不能进入该页面
</el-card>
</div>
</template>
<style lang="scss" scoped>
.content {
margin-top: 20px;
}
</style>