Skip to content

Commit f1b8ca4

Browse files
committed
conflicts merged
2 parents adcba83 + 925f30b commit f1b8ca4

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

README.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ An easy and clean VueJS 2.x wizard plugin
1111

1212
## Live Demo
1313

14-
[vue-good-wizard Demo](https://xaksis.github.io/vue-good-demos/#/simple-wizard)
14+
[vue-good-wizard Demo](https://jsfiddle.net/aks9800/ygkruetq/)
1515

1616
<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>
1717

@@ -23,18 +23,32 @@ An easy and clean VueJS 2.x wizard plugin
2323
### Installing
2424

2525
Install with npm:
26-
```
26+
```bash
2727
npm install --save vue-good-wizard
2828
```
2929

3030
import into project:
31-
```
31+
```js
3232
import Vue from 'vue';
3333
import VueGoodWizard from 'vue-good-wizard';
3434

3535
Vue.use(VueGoodWizard);
3636
```
3737

38+
**or**
39+
40+
import into component:
41+
42+
```js
43+
// within your component script tag
44+
import { GoodWizard } from 'vue-good-wizard';
45+
46+
// in your components
47+
components: {
48+
'vue-good-wizard': GoodWizard,
49+
}
50+
```
51+
3852
## Example Usage
3953

4054
```html
@@ -298,4 +312,4 @@ export default {
298312

299313
## License
300314

301-
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE) file for details
315+
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE) file for details

0 commit comments

Comments
 (0)