refactor: 全局大小设置移除固定的size、新版的element-plus的size移除mini和medium的值

This commit is contained in:
郝先瑞
2022-02-20 00:17:46 +08:00
parent f5f295b028
commit 19a4ad7a12
25 changed files with 59 additions and 118 deletions

View File

@@ -13,9 +13,9 @@
<script setup lang="ts">
import {computed} from "vue";
import {tagsViewStoreHook} from '@/store/modules/tagsView'
import {useTagsViewStoreHook} from '@/store/modules/tagsView'
const cachedViews = computed(() => tagsViewStoreHook().cachedViews);
const cachedViews = computed(() => useTagsViewStoreHook().cachedViews);
</script>