8 lines
114 B
Vue
8 lines
114 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
// 根组件,仅承载路由出口
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<router-view />
|
||
|
|
</template>
|