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