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