fix(admin): standardize resource initialization and lists
This commit is contained in:
@@ -37,7 +37,6 @@
|
||||
<a-layout-content>
|
||||
<PageLayout />
|
||||
</a-layout-content>
|
||||
<Footer v-if="footer" />
|
||||
</a-layout>
|
||||
</a-layout>
|
||||
</a-layout>
|
||||
@@ -47,7 +46,6 @@
|
||||
<script lang="ts" setup>
|
||||
import { computed, onMounted, provide, ref, watch } from 'vue';
|
||||
import { useRoute, useRouter } from 'vue-router';
|
||||
import Footer from '@/components/footer/index.vue';
|
||||
import Menu from '@/components/menu/index.vue';
|
||||
import NavBar from '@/components/navbar/index.vue';
|
||||
import TabBar from '@/components/tab-bar/index.vue';
|
||||
@@ -67,7 +65,6 @@ const navbarHeight = `60px`;
|
||||
const navbar = computed(() => appStore.navbar);
|
||||
const renderMenu = computed(() => appStore.menu && !appStore.topMenu);
|
||||
const hideMenu = computed(() => appStore.hideMenu);
|
||||
const footer = computed(() => appStore.footer);
|
||||
const menuWidth = computed(() => {
|
||||
return appStore.menuCollapse ? 48 : appStore.menuWidth;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user