Files
starRiverProperty/frontend-source/projects/cwos-portal/src/App.vue
T
反编译工作区 fd3ee54135 feat: scaffold cwos-portal bootstrap (main.js, App.vue)
Adds application bootstrap files for Vue 2 + Element UI


Former-commit-id: 588f73060138b2b891fb00c2e70318de4020d026
2026-04-29 12:55:07 +08:00

18 lines
167 B
Vue

<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: 'App',
};
</script>
<style>
#app {
height: 100%;
}
</style>