15 lines
201 B
Vue

<template>
<Card title="人员管理">
人员管理
</Card>
</template>
<script>
import Card from '../components/Card.vue'
export default {
components: { Card }
}
</script>
<style></style>