UNPKG

vue-svg-map

Version:

A set of Vue 3 components to display an interactive SVG map

12 lines (11 loc) 200 B
export interface Map { viewBox: string; locations: Location[]; label?: string; } export interface Location { id: string; path: string; name?: string; [key: string]: any; }