Your Name
2022-07-27 b78c039181ac316964a0f0de077170de178d90ab
src/App.vue
@@ -21,7 +21,7 @@
import CloseFull from '/@/layout/navBars/breadcrumb/closeFull.vue';
import { initBackEndControlRoutes } from './router/backEnd';
export default ({
export default {
   name: 'app',
   components: { LockScreen, Setings, CloseFull },
   setup() {
@@ -32,7 +32,7 @@
      const storesThemeConfig = useThemeConfig();
      const { themeConfig } = storeToRefs(storesThemeConfig);
      const state = reactive({
         i18nLocale: null,
            i18nLocale: null
      });
      // 获取全局组件大小
@@ -86,15 +86,15 @@
            other.useTitle();
         },
         {
            deep: true,
                deep: true
         }
      );
      return {
         themeConfig,
         setingsRef,
         getGlobalComponentSize,
         ...toRefs(state),
            ...toRefs(state)
      };
   },
});
    }
};
</script>