mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-09 16:30:29 +08:00
fd3ee54135
Adds application bootstrap files for Vue 2 + Element UI Former-commit-id: 588f73060138b2b891fb00c2e70318de4020d026
18 lines
167 B
Vue
18 lines
167 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'App',
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
#app {
|
|
height: 100%;
|
|
}
|
|
</style>
|