frontend/src/App.vue
heshunme 83bc094502 1.修复了route不能在App.vue中正常显示的bug
2.精简了App.vue,重构了HelloWorld.vue
3.在route/index.js中留了个小彩蛋
4.添加了一些提示语
2024-06-25 00:23:34 +08:00

10 lines
317 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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