chore: 去除无用打印
This commit is contained in:
parent
01379f0c97
commit
23de465f6f
@ -205,7 +205,6 @@ async function generateAccess(options: GenerateMenuAndRoutesOptions) {
|
|||||||
vbenRoute.meta.hideChildrenInMenu = true;
|
vbenRoute.meta.hideChildrenInMenu = true;
|
||||||
}
|
}
|
||||||
vbenRoute.component = 'BasicLayout';
|
vbenRoute.component = 'BasicLayout';
|
||||||
console.log('RootMenu', vbenRoute);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { onBeforeUnmount, onMounted, ref } from 'vue';
|
import { onBeforeUnmount, onMounted, ref } from 'vue';
|
||||||
|
|
||||||
import { preferences } from '@vben/preferences';
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
Tag as ATag,
|
Tag as ATag,
|
||||||
Button,
|
Button,
|
||||||
@ -13,15 +11,10 @@ import {
|
|||||||
} from 'ant-design-vue';
|
} from 'ant-design-vue';
|
||||||
|
|
||||||
import { DictTag } from '#/components/Dict';
|
import { DictTag } from '#/components/Dict';
|
||||||
import { useDictStore } from '#/store/dict';
|
|
||||||
import { getDict, getDictOptions } from '#/utils/dict';
|
import { getDict, getDictOptions } from '#/utils/dict';
|
||||||
|
|
||||||
import TableTest from './table';
|
import TableTest from './table';
|
||||||
|
|
||||||
onMounted(() => {
|
|
||||||
console.log('keepAlive测试 -> 挂载了');
|
|
||||||
});
|
|
||||||
|
|
||||||
const count = ref(0);
|
const count = ref(0);
|
||||||
let intervalId: number = 0;
|
let intervalId: number = 0;
|
||||||
|
|
||||||
@ -37,13 +30,6 @@ const sexOptions = getDictOptions('sys_user_sex');
|
|||||||
const disabledDict = getDict('sys_normal_disable');
|
const disabledDict = getDict('sys_normal_disable');
|
||||||
const select = ref('pc');
|
const select = ref('pc');
|
||||||
const deviceOptions = getDictOptions('sys_device_type');
|
const deviceOptions = getDictOptions('sys_device_type');
|
||||||
|
|
||||||
const dictStore = useDictStore();
|
|
||||||
onMounted(() => {
|
|
||||||
console.log(dictStore.dictMap);
|
|
||||||
console.log(dictStore.dictOptionsMap);
|
|
||||||
console.log(preferences.theme.colorPrimary);
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
Loading…
Reference in New Issue
Block a user