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
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)
}
}
use 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'