搭建好管理后台模板

This commit is contained in:
RockYang
2023-04-28 14:00:36 +08:00
parent 82d097cb4a
commit 525cd524ba
5 changed files with 158 additions and 17 deletions

View File

@@ -0,0 +1,24 @@
<template>
<div class="system-config">
系统配置
</div>
</template>
<script>
import {defineComponent} from "vue";
export default defineComponent({
name: 'SysConfig',
data() {
return {
title: "系统管理",
}
},
})
</script>
<style lang="stylus" scoped>
.system-config {
}
</style>