25 lines
434 B
Vue
25 lines
434 B
Vue
<template lang="pug">
|
|
div(:class="$style.view")
|
|
transition(enter-active-class="animated-fast fadeIn"
|
|
leave-active-class="animated-fast fadeOut")
|
|
router-view
|
|
//- core-title-bar
|
|
//- router-view
|
|
</template>
|
|
|
|
|
|
<style lang="less" module>
|
|
@import '../../assets/styles/layout.less';
|
|
|
|
.view {
|
|
position: relative;
|
|
> * {
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
// background: #fff;
|
|
// overflow: hidden;
|
|
}
|
|
|
|
</style>
|