Vue 2 plugin that provides directives and a $intro() method to integrate intro.js (version ^2.7.0) for step-by-step tours and hints. Stable release 1.3.2. Requires manual installation of intro.js and its CSS. Uses Global Vue and ProvidePlugin for webpack. Alternatives: vue-tour, driver.js.
npm install vue-introjsVerified import paths — ran on the pinned version, not inferred.
Shows basic setup: install plugin globally, use v-intro directive, and start tour on mount.
Run: npm install intro.js and import 'intro.js/introjs.css' in your app.
Add new webpack.ProvidePlugin({ introJs: ['intro.js', 'introJs'] }) to webpack config.Use vue3-introjs or migrate to driver.js.
Call native intro.js methods like .start(), .showHints(), etc.
Install intro.js: npm install intro.js. Add ProvidePlugin to webpack config.
Import VueIntro and call Vue.use(VueIntro) before mounting app.
Ensure Vue.use(VueIntro) is executed in main.js before component creation.