nankai-cms-website-gov/.kit/translated/stores/index.js
2025-03-13 09:52:18 +08:00

15 lines
344 B
JavaScript

import { defineStore } from 'pinia'
import { fetchConfig } from '@/api/client'
export const useDefaultStore = defineStore('default', {
state: () => ({
// 客户端配置(包含系统配置和字典数据)
clientConfig: null
}),
actions: {
async fetchConfig () {
this.clientConfig = await fetchConfig()
}
}
})