仪表盘
版本库
文件存储
活动
搜索
登录
史文帅
/
PM20231205_SXPW
山西配网一体化Demo
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
系统初始化
surprise
2023-12-05
6ecef4176f6d9df60cd1a753a36e09cd96bce9b8
[~shiwenshuai/PM20231205_SXPW.git]
/
src
/
App.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
<router-view />
</template>
<script>
import Index from "./components/index";
export default {
name: "App",
components: {
Index,
},
};
</script>
<style>
</style>