wip(table): perf table #136,146,134

This commit is contained in:
vben
2020-12-29 23:37:40 +08:00
parent 405d7466dd
commit 116a1f7745
64 changed files with 1858 additions and 929 deletions

View File

@@ -1,9 +1,5 @@
<template>
<ConfigProvider
v-bind="lockEvent"
:locale="antConfigLocale"
:transform-cell-text="transformCellText"
>
<ConfigProvider v-bind="lockEvent" :locale="antConfigLocale">
<AppProvider>
<router-view />
</AppProvider>
@@ -14,7 +10,7 @@
import { defineComponent } from 'vue';
import { ConfigProvider } from 'ant-design-vue';
import { getConfigProvider, initAppConfigStore } from '/@/setup/App';
import { initAppConfigStore } from '/@/setup/App';
import { useLockPage } from '/@/hooks/web/useLockPage';
import { useLocale } from '/@/hooks/web/useLocale';
@@ -28,9 +24,6 @@
// Initialize vuex internal system configuration
initAppConfigStore();
// Get ConfigProvider configuration
const { transformCellText } = getConfigProvider();
// Create a lock screen monitor
const lockEvent = useLockPage();
@@ -38,7 +31,6 @@
const { antConfigLocale } = useLocale();
return {
transformCellText,
antConfigLocale,
lockEvent,
};