jasonwilczak / vuetify-simple-wizard

A simple wizard that uses Vue2+Vuetify to get you going quickly

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vuetify-simple-wizard

npm NpmLicense npm

A simple wizard that uses Vue2+Vuetify to get you going quickly

Getting Started

Installing

Install with npm:

npm install --save vuetify-simple-wizard

import into project:

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:

// within your component script tag
import { SimpleWizard } from 'vuetify-simple-wizard';

// in your components
components: {
  'vuetify-simple-wizard': SimpleWizard,
}

API

Wiki/API

Examples

Wiki/Examples

Contributing

About

A simple wizard that uses Vue2+Vuetify to get you going quickly

License:MIT License


Languages

Language:Vue 93.9%Language:JavaScript 5.3%Language:HTML 0.8%