A Vue wrapper for the site tour library Shepherd.
npm install vue-shepherd
!Download count all time
![npm]()

This is a Vue wrapper for the Shepherd, site tour, library.
``bash`
npm install vue-shepherd --save
First, in your main.js, import the styles
`js`
import 'shepherd.js/dist/css/shepherd.css'
Then, use shepherd in your components:
`vue
Testing
`
To use vue-shepherd with Option API you have to install the plugin which will add the '$shepherd' function to your vue app.
`js
import { createApp } from 'vue';
import VueShepherdPlugin from 'vue-shepherd';
import '~shepherd.js/dist/css/shepherd.css';
createApp().use(VueShepherdPlugin).mount('#app');
`
`vue
Testing
`
file.`js
import VueShepherd from 'vue-shepherd/dist/vue-shepherd.ssr.js';
``WIP