https://github.com/jasonwilczak/vuetify-simple-wizard
A simple wizard that uses Vue2+Vuetify to get you going quickly
https://github.com/jasonwilczak/vuetify-simple-wizard
javascript stepper vuejs2 vuetify wizard
Last synced: 9 months ago
JSON representation
A simple wizard that uses Vue2+Vuetify to get you going quickly
- Host: GitHub
- URL: https://github.com/jasonwilczak/vuetify-simple-wizard
- Owner: jasonwilczak
- License: mit
- Created: 2018-09-09T08:30:58.000Z (almost 8 years ago)
- Default Branch: develop
- Last Pushed: 2020-10-31T00:11:16.000Z (over 5 years ago)
- Last Synced: 2025-02-06T12:37:31.501Z (over 1 year ago)
- Topics: javascript, stepper, vuejs2, vuetify, wizard
- Language: Vue
- Size: 372 KB
- Stars: 5
- Watchers: 3
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vuetify-simple-wizard



A simple wizard that uses Vue2+Vuetify to get you going quickly
## Getting Started
### Installing
Install with npm:
```bash
npm install --save vuetify-simple-wizard
```
import into project:
```js
import Vue from 'vue';
import Vuetify from 'vuetify';
import 'vuetify/dist/vuetify.min.css'
import 'material-design-icons-iconfont/dist/material-design-icons.css'
import VuetifySimpleWizard from 'vuetify-simple-wizard';
Vue.use(Vuetify)
Vue.use(VuetifySimpleWizard);
```
**or**
import into component:
```js
// within your component script tag
import { SimpleWizard } from 'vuetify-simple-wizard';
// in your components
components: {
'vuetify-simple-wizard': SimpleWizard,
}
```
### API
[Wiki/API](https://github.com/jasonwilczak/vuetify-simple-wizard/wiki/API)
### Examples
[Wiki/Examples](https://github.com/jasonwilczak/vuetify-simple-wizard/wiki/Examples)
## Contributing