Files
exam-jyt/exam-vue/src/App.vue
T
2026-06-18 21:29:45 +08:00

17 lines
248 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.
<!--
@description 根组件定义应用顶层结构与全局样式入口
@author D吕贺034244311
@date 20260615
-->
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: 'App'
}
</script>