UNPKG

vueplug-typer

Version:

Vue component that simulates a user typing, selecting, and erasing text.

10 lines (8 loc) 184 B
// Import vue component import VueTyper from "./VueTyper.vue"; import {App} from "vue"; export default { install: (app:App) => { app.component(VueTyper.name, VueTyper); }, };