13 lines
289 B
Vue
13 lines
289 B
Vue
<script setup lang="ts">
|
|
import PagePlaceholder from '@/components/PagePlaceholder.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<PagePlaceholder
|
|
group="管理"
|
|
title="用户与权限"
|
|
icon="◉"
|
|
description="用户与权限页面占位,待根据 Web 端需求实现。"
|
|
/>
|
|
</template>
|