mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-14 11:42:48 +00:00
18 lines
251 B
TypeScript
18 lines
251 B
TypeScript
import { defineStore } from 'pinia'
|
|
|
|
interface App {
|
|
langKey: string
|
|
}
|
|
|
|
const useAppStore = defineStore('app', {
|
|
state: (): App => {
|
|
return {
|
|
langKey: ''
|
|
}
|
|
},
|
|
actions: {
|
|
|
|
}
|
|
})
|
|
|
|
export default useAppStore |