26 lines
512 B
Vue
26 lines
512 B
Vue
<template>
|
|
<div :class="$style.view">
|
|
<router-view v-slot="{ Component }">
|
|
<transition enter-active-class="animated-fast fadeIn" leave-active-class="animated-fast fadeOut">
|
|
<component :is="Component" />
|
|
</transition>
|
|
</router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="less" module>
|
|
@import '@renderer/assets/styles/layout.less';
|
|
|
|
.view {
|
|
position: relative;
|
|
z-index: 1;
|
|
// > * {
|
|
// position: absolute;
|
|
// width: 100%;
|
|
// }
|
|
// background: #fff;
|
|
// overflow: hidden;
|
|
}
|
|
|
|
</style>
|