2023-11-24 11:02:52 +00:00
|
|
|
import { defineStore } from 'pinia'
|
|
|
|
|
|
|
|
|
|
const useCommonStore = defineStore({
|
|
|
|
|
id: 'common',
|
|
|
|
|
state: () => ({
|
|
|
|
|
breadcrumb: null
|
|
|
|
|
}),
|
|
|
|
|
actions: {
|
2023-12-04 03:18:12 +00:00
|
|
|
saveBreadcrumb(data: any) {
|
2023-11-24 11:02:52 +00:00
|
|
|
this.breadcrumb = data
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
export default useCommonStore
|