Files
dvcp_v2_webapp/examples/components/mainContent.vue

31 lines
581 B
Vue
Raw Permalink Normal View History

<template>
<section class="mainContent">
2024-10-11 12:04:44 +08:00
<ai-nav-tab :routes="$apps"/>
2022-11-18 16:39:09 +08:00
<div class="fill">
<router-view v-bind="$attrs.commonAttrs"/>
<ai-empty v-if="isHome">欢迎使用村微产品库</ai-empty>
2022-11-18 16:39:09 +08:00
</div>
</section>
</template>
<script>
import AiNavTab from "dui/packages/basic/AiNavTab";
export default {
name: "mainContent",
components: {AiNavTab},
computed: {
isHome: v => v.$route.path == '/',
},
}
</script>
<style lang="scss" scoped>
.mainContent {
height: 100%;
width: 100%;
2022-11-18 16:39:09 +08:00
display: flex;
flex-direction: column;
}
</style>