1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

chore: 引入 element-plus 依赖 (手动引入)

This commit is contained in:
2025-02-22 19:03:23 +08:00
parent 33311eb8ad
commit e211883718
11 changed files with 742 additions and 34 deletions

View File

@@ -0,0 +1,9 @@
import { ref } from 'vue'
import { defineStore } from 'pinia'
export const useThemeConfigStore = defineStore('themeConfig', () => {
// 全局组件大小
const elSize = ref<"" | "small" | "default" | "large">('small')
return { elSize }
})