vue-tour
Version:
Vue Tour is a lightweight, simple and customizable tour plugin for use with Vue.js. It provides a quick and easy way to guide your users through your application.
22 lines (18 loc) • 370 B
TypeScript
import './vue';
import Vue from 'vue';
export function install (vue: typeof Vue): void
export interface Tour {
// Methods
start(startStep?: string): void
previousStep(): void
nextStep(): void
stop(): void
skip(): void
finish(): void
currentStep: number
// Computed
isRunning: boolean
isFirst: boolean
isLast: boolean
numberOfSteps: number
}