2021-05-13 10:56:04 +08:00
|
|
|
<template>
|
|
|
|
<div id="main" class="app-main">
|
|
|
|
<router-view></router-view>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2022-03-03 11:26:50 +08:00
|
|
|
|
2021-05-13 10:56:04 +08:00
|
|
|
export default {
|
2021-12-30 11:16:08 +08:00
|
|
|
|
2022-03-03 11:26:50 +08:00
|
|
|
|
2021-05-13 10:56:04 +08:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: #f0f0f0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.app-main {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.br button {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.operation button {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ivu-btn-text:focus {
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ivu-tag {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2022-07-05 18:04:04 +08:00
|
|
|
.tox-notifications-container{
|
|
|
|
display: none !important;
|
|
|
|
}
|
2021-05-13 10:56:04 +08:00
|
|
|
</style>
|