import {ref} from "vue"; export type BasePoint = { id: string pos: { x: number, y: number, z: number } } export const basePoints = ref<BasePoint[]>([])