mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-27 03:46:34 +08:00
11 lines
363 B
TypeScript
11 lines
363 B
TypeScript
import { useChartEditStoreStore } from '@/store/modules/chartEditStore/chartEditStore'
|
|
import { EditCanvasTypeEnum } from '@/store/modules/chartEditStore/chartEditStore.d'
|
|
const chartEditStore = useChartEditStoreStore()
|
|
|
|
export const getChartEditStore = () => {
|
|
return chartEditStore
|
|
}
|
|
export const getChartEditStoreEnum = () => {
|
|
return EditCanvasTypeEnum
|
|
}
|