Files
wecom_it_smart_desk/frontend-admin/src/App.vue
T

14 lines
437 B
Vue
Raw Normal View History

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