2025-06-26 17:47:20 +08:00
|
|
|
<template>
|
|
|
|
|
<div id="app" class="app">
|
2025-08-06 10:00:01 +08:00
|
|
|
<router-view/>
|
2025-06-26 17:47:20 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
name: 'App'
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2025-08-05 14:20:40 +08:00
|
|
|
@import './style/mixin'
|
2025-06-26 17:47:20 +08:00
|
|
|
.app
|
|
|
|
|
width 100%
|
|
|
|
|
height 100%
|
|
|
|
|
</style>
|