I have an issue which I've used vue-form-wizard,
The first issue I want to know if it is possible to remove the button? which is Goback! and Go next? I've install vue-form-wizardin my npm is there any way to remove it, or should I remove it inside node mudules? I just want to used this plugin for viewing and tracking
The second issue is when I used start-index="2" in <form-wizard> The layout will torn like the image below, is there any way to fix this?
Here's my code
<form-wizard color="#4466f2" start-index="2" title="Total Enterprise Value" subtitle="Accounting" back-button-text="Go back!" next-button-text="Go next!" finish-button-text="We're there"> <tab-content title="Incoming"> <div class="setup-content" id="step-1"> </div> </tab-content> <tab-content title="Obligate"> <div class="setup-content" id="step-2"> </div> </tab-content> <tab-content title="Journal"> <div class="setup-content" id="step-3"> </div> </tab-content> <tab-content title="Certified"> <div class="setup-content" id="step-4"> </div> </tab-content> </form-wizard> </div>
