UNPKG

vue3-interactjs

Version:

interactjs component for Vue3

12 lines (9 loc) 218 B
import Interact from "./Interact.vue"; import { App, Plugin } from "vue"; const install = (app: App): void => { app.component("Interact", Interact); }; const plugin: Plugin = { install, }; export default plugin;