frontend/src/App.vue

10 lines
317 B
Vue
Raw Normal View History

2024-06-24 03:56:21 +00:00
<template>
<router-view></router-view>
2024-06-24 03:56:21 +00:00
</template>
<script setup>
import 'element-plus/dist/index.css'
</script>
<!--请不要对App.vue进行修改请采用在views的对应目录下新建自己需要的文件
并通过在/router下的对应模块名称的js中引入路由的方式来显示自己的页面-->