Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tushargugnani committed Mar 9, 2021
2 parents 1c2a705 + e36bab0 commit c42fc36
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,28 @@ https://tushargugnani.github.io/vue-step-wizard/#/
npm install --save vue-step-wizard
```

### Import

### Import Globally
```
import VueStepWizard from 'vue-step-wizard'
import 'vue-step-wizard/dist/vue-step-wizard.css'
Vue.use(VueStepWizard);
```


### Use Globally
### Import and use Components Locally
```
Vue.use(VueStepWizard)
//local registration
import {FormWizard, TabContent} from 'vue-step-wizard'
import 'vue-step-wizard/dist/vue-step-wizard.css'
//component code
components: {
FormWizard,
TabContent
}
```

### Use Components Locally
```
import FormWizard from 'vue-step-wizard'
import TabContent from 'vue-step-wizard'
```
### Buy my a Pizza

You have an option to buy me a pizza if you found this plugin useful

https://www.buymeacoffee.com/wLrF3Z0tE

0 comments on commit c42fc36

Please sign in to comment.