2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-06-07 09:52:23 +03:00
Files
vue-form-wizard/src/index.js
T
2017-04-18 01:57:33 +03:00

11 lines
273 B
JavaScript

module.exports = {
FormWizard: require('./components/FormWizard.vue'),
TabContent: require('./components/TabContent.vue'),
install (Vue) {
Vue.component('form-wizard', module.exports.FormWizard)
Vue.component('tab-content', module.exports.TabContent)
}
}