mirror of
https://github.com/tenrok/vue-form-wizard.git
synced 2026-06-07 09:52:23 +03:00
11 lines
273 B
JavaScript
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)
|
|
}
|
|
}
|