Skip to content

Commit

Permalink
local changes
Browse files Browse the repository at this point in the history
  • Loading branch information
xaksis committed Jul 31, 2018
1 parent 438195f commit adcba83
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# vue-good-wizard
An easy and clean VueJS 2.x wizard plugin

[![npm](https://img.shields.io/npm/dm/vue-good-wizard.svg?style=flat-square)](https://www.npmjs.com/package/vue-good-wizard)
[![npm](https://img.shields.io/github/package-json/v/xaksis/vue-good-wizard.svg?style=flat-square)](https://github.com/xaksis/vue-good-wizard/releases)
[![npm](https://img.shields.io/github/license/xaksis/vue-good-wizard.svg?style=flat-square)](https://github.com/xaksis/vue-good-wizard/blob/master/LICENSE)
[![](https://data.jsdelivr.com/v1/package/npm/vue-good-wizard/badge)](https://www.jsdelivr.com/package/npm/vue-good-wizard)

An easy and clean VueJS 2.x wizard plugin

![Basic Screenshot](README/images/vue-good-wizard.gif)

## Live Demo
Expand All @@ -14,7 +16,7 @@ An easy and clean VueJS 2.x wizard plugin
<a href="https://www.buymeacoffee.com/68BUXR1d9" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/purple_img.png" alt="Buy Me A Coffee" style="height: auto !important;width: auto !important;" ></a>

## Follow the project progress live
[Vue-good-table Project](https://timerbit.com/#/public/U1kivTdfbz4T3hJ3E7BJ)
[Vue-good-wizard Project](https://timerbit.com/#/public/U1kivTdfbz4T3hJ3E7BJ)

## Getting Started

Expand Down Expand Up @@ -292,7 +294,7 @@ export default {

## Authors

* **Akshay Anand** - *Initial work* - [xaksis](https://github.com/xaksis)
* **Akshay Anand** - [xaksis](https://github.com/xaksis)

## License

Expand Down
5 changes: 5 additions & 0 deletions dev/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
</template>

<script>
import { GoodWizard } from '../dist/vue-good-wizard.es.js';
export default {
name: 'demo',
data(){
Expand Down Expand Up @@ -66,6 +68,9 @@ export default {
this.steps[3].options.nextDisabled = false;
}
},
components: {
'vue-good-wizard': GoodWizard,
}
};
</script>

Expand Down
2 changes: 1 addition & 1 deletion dev/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import App from './App'
// import VueGoodWizard from '../dist/vue-good-wizard.cjs'
import VueGoodWizard from '../src'

Vue.use(VueGoodWizard);
// Vue.use(VueGoodWizard);

Vue.config.productionTip = false

Expand Down

0 comments on commit adcba83

Please sign in to comment.