You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
284 B
22 lines
284 B
8 months ago
|
<template>
|
||
|
<div class="main">
|
||
|
<RouterView />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import { RouterView } from 'vue-router'
|
||
|
</script>
|
||
|
<style>
|
||
|
.el-message {
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
</style>
|
||
|
<style scoped>
|
||
|
.main {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
</style>
|