| 1234567891011121314 |
- import { computed, Ref } from 'vue'
- import { CreateComponentType } from '@/packages/index.d'
- import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
- // 获取当前对象数据
- export const useTargetData = () => {
- const chartEditStore = useChartEditStore()
- const targetData: Ref<CreateComponentType> = computed(() => {
- const list = chartEditStore.getComponentList
- const targetIndex = chartEditStore.fetchTargetIndex()
- return list[targetIndex]
- })
- return { targetData, chartEditStore }
- }
|