Package Exports
- vue-shepherd
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-shepherd) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vue-shepherd
This is a Vue wrapper for the Shepherd, site tour, library.
Installation
NPM
npm install vue-shepherd --save
When using with a module system, you must explicitly install vue-shepherd via Vue.use():
import Vue from 'vue';
import VueShepherd from 'vue-shepherd';
Vue.use(VueShepherd);
Usage
You will need to import the styles first:
@import '~shepherd.js/dist/css/shepherd.css';
The plugin extends Vue with a set of directives and $shepherd() constructor function.
Constructor Function
<template>
<div>
Testing
</div>
</template>
<script>
export default {
name: 'ShepherdExample',
mounted() {
this.$nextTick(() => {
const tour = this.$shepherd({
useModalOverlay: true
});
tour.addStep({
attachTo: { element: this.$el, on: 'top' },
text: 'Test'
});
tour.start();
});
}
};
</script>
Directives
WIP