UNPKG

vue-trip

Version:

Vue Trip is a lightweight and customizable plug-in that allows an easy and efficient way to guide your users in your application

14 lines (11 loc) 323 B
import VTrip from './components/VTrip.vue'; import VCard from './components/VCard.vue'; import VButton from './components/VButton.vue'; const VueTrip = { install(Vue) { Vue.component(VTrip.name, VTrip); Vue.component(VCard.name, VCard); Vue.component(VButton.name, VButton); }, }; export default VueTrip;