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.
It also aims to provide additional functionality on top of Shepherd.
Installation
npm install vue-shepherd --save
Usage
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