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