import { inject, provide, Ref } from 'vue' import { DrawExpose } from "@/index.ts"; const actionKey = Symbol('drawAction'); export const installDraw = (drawRef: Ref) => { provide(actionKey, drawRef) } export const useDraw = () => inject>(actionKey)!