An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# vuetify-simple-wizard

![npm](https://img.shields.io/npm/v/vuetify-simple-wizard.svg?style=plastic)
![NpmLicense](https://img.shields.io/npm/l/vuetify-simple-wizard.svg?style=plastic)
![npm](https://img.shields.io/npm/dt/vuetify-simple-wizard.svg?style=plastic)

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