UNPKG

@globalhive/vuejs-tour

Version:

VueJS Tour is a lightweight, simple and customizable tour plugin. It provides a quick and easy way to guide your users through your application.

13 lines (11 loc) 293 B
import { NanoPopPosition } from 'nanopop'; export interface ITourStep { target: string; content: string; placement?: NanoPopPosition; onBefore?: () => Promise<void>; onAfter?: () => Promise<void>; highlight?: boolean; backdrop?: boolean; noScroll?: boolean; }