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

14 lines
437 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
=============================================================================
企微IT智能服务台 管理后台根组件
=============================================================================
说明作为 Vue Router 的容器提供 <router-view /> 渲染匹配的路由组件
-->
<template>
<router-view />
</template>
<script setup lang="ts">
// 根组件仅作为路由容器,无需额外逻辑
</script>