You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<ahref="https://www.buymeacoffee.com/68BUXR1d9"target="_blank"><imgsrc="https://www.buymeacoffee.com/assets/img/custom_images/purple_img.png"alt="Buy Me A Coffee"style="height: auto!important;width: auto!important;" ></a>
17
17
@@ -23,18 +23,32 @@ An easy and clean VueJS 2.x wizard plugin
23
23
### Installing
24
24
25
25
Install with npm:
26
-
```
26
+
```bash
27
27
npm install --save vue-good-wizard
28
28
```
29
29
30
30
import into project:
31
-
```
31
+
```js
32
32
importVuefrom'vue';
33
33
importVueGoodWizardfrom'vue-good-wizard';
34
34
35
35
Vue.use(VueGoodWizard);
36
36
```
37
37
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
+
38
52
## Example Usage
39
53
40
54
```html
@@ -298,4 +312,4 @@ export default {
298
312
299
313
## License
300
314
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