11 lines
139 B
Vue
11 lines
139 B
Vue
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<script setup>
|
|
/**
|
|
* 根组件
|
|
* 仅作为路由出口,不承载业务逻辑
|
|
*/
|
|
</script>
|