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
{{ message }}
This repository was archived by the owner on Jun 1, 2023. It is now read-only.
Hi,
I am using this wizard and it's great. Thanks for that.
Below, is my code:
<template><vuestic-widget><form-wizard @on-complete="onComplete"><tab-contenttitle="Personal details"icon="ti-user"
:before-change="validateAsync">
My first tab content
</tab-content><tab-contenttitle="Additional Info"icon="ti-settings">
My second tab content
</tab-content><tab-contenttitle="Last step"icon="ti-check">
Yuhuuu! This seems pretty damn simple
</tab-content></form-wizard></vuestic-widget></template><script>import{FormWizard, TabContent}from'vue-form-wizard'import'vue-form-wizard/dist/vue-form-wizard.min.css'exportdefault{name: 'postSignup',components: {
FormWizard,
TabContent
},data(){return{counter: 0}},methods: {onComplete: function(){alert('Yay. Done!')},validateAsync: function(){if(this.counter===0){this.counter++console.log('its false')returnfalse}else{returntrue}}}}</script>
and this is my output:
I have 3 questions:
The fonts are not getting fetched and I see it in the console: Fallback font will be used while loading: https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2
How do I remove the default heading and caption for the wizard? : Awesome Wizard
How to override the CSS and add my own colours instead of red?
The text was updated successfully, but these errors were encountered:
Hi,
I am using this wizard and it's great. Thanks for that.
Below, is my code:
and this is my output:

I have 3 questions:
Fallback font will be used while loading: https://fonts.gstatic.com/s/sourcesanspro/v11/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2
Awesome Wizard
The text was updated successfully, but these errors were encountered: