Loading src/functions/interactiveLayer.js 0 → 100644 +21 −0 Original line number Diff line number Diff line export const props = { interactive: { type: Boolean, default: true, }, bubblingMouseEvents: { type: Boolean, default: true, }, }; export const setup = (props) => { const options = { interactive: props.interactive, bubblingMouseEvents: props.bubblingMouseEvents, }; const methods = {}; return { options, methods }; }; Loading
src/functions/interactiveLayer.js 0 → 100644 +21 −0 Original line number Diff line number Diff line export const props = { interactive: { type: Boolean, default: true, }, bubblingMouseEvents: { type: Boolean, default: true, }, }; export const setup = (props) => { const options = { interactive: props.interactive, bubblingMouseEvents: props.bubblingMouseEvents, }; const methods = {}; return { options, methods }; };