Package Exports
- form-wizard-vue3
- form-wizard-vue3/dist/form-wizard-vue3.es.js
- form-wizard-vue3/dist/form-wizard-vue3.umd.js
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 (form-wizard-vue3) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Form Wizard Vue3
Form Wizard Vue 3 is a simple stepper/wizard component. It can be easily customized, has no dependencies, works in harmony with your components.
Documentation
Complete documentation and examples will be available soon.
- Documentation - coming soon
- Live Demo
Install
yarn add form-wizard-vue3
# or use npm
npm install form-wizard-vue3
Then, import component globally:
import Wizard from 'form-wizard-vue3'
export default {
install(app) {
app.component('Wizard', Wizard)
}
}
Or import component directly:
import 'form-wizard-vue3/dist/form-wizard-vue3.css'
import Wizard from 'form-wizard-vue3'
The component itself does not include any CSS. You'll need to include it separately:
import 'form-wizard-vue3/dist/form-wizard-vue3.css'