25 lines
637 B
Vue
25 lines
637 B
Vue
<template>
|
|
|
|
<!-- 底部菜单 -->
|
|
<SubMenu />
|
|
<!-- 版权信息 -->
|
|
<Copyright />
|
|
<!-- 侧边工具栏 -->
|
|
<ToolBar />
|
|
<!-- 底部菜单 -->
|
|
<!-- <TabBar />-->
|
|
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import SubMenu from "~/components/AppFooter/SubMenu/SubMenu.vue";
|
|
import Copyright from "~/components/AppFooter/Copyright/Copyright.vue";
|
|
import ToolBar from "~/components/AppFooter/ToolBar/ToolBar.vue";
|
|
import TabBar from "~/components/AppFooter/TabBar/TabBar.vue";
|
|
import Partners from "~/components/Index/Partners.vue";
|
|
import Customized from "~/components/Index/Customized.vue";
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
</style>
|