14 lines
437 B
Vue
14 lines
437 B
Vue
<!--
|
||
=============================================================================
|
||
企微IT智能服务台 — 管理后台根组件
|
||
=============================================================================
|
||
说明:作为 Vue Router 的容器,提供 <router-view /> 渲染匹配的路由组件
|
||
-->
|
||
<template>
|
||
<router-view />
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
// 根组件仅作为路由容器,无需额外逻辑
|
||
</script>
|