mirror of
https://github.com/palxiao/poster-design.git
synced 2025-07-03 03:56:41 +08:00
31 lines
501 B
Vue
31 lines
501 B
Vue
<template>
|
|
<div id="appindex">
|
|
<div class="viewWrap">
|
|
<router-view></router-view>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="less">
|
|
#appindex {
|
|
min-width: 1180px;
|
|
.viewWrap {
|
|
background-color: #ffffff;
|
|
min-height: calc(110vh - 110px);
|
|
min-width: 1170px;
|
|
}
|
|
}
|
|
// .fade-enter-active {
|
|
// transition: opacity 0.3s;
|
|
// }
|
|
// .fade-leave-active {
|
|
// transition: opacity 0.3s;
|
|
// }
|
|
// .fade-enter {
|
|
// opacity: 0;
|
|
// }
|
|
// .fade-leave-to {
|
|
// opacity: 0;
|
|
// }
|
|
</style>
|