bahadirsofuoglu / form-wizard-vue3

A form wizard/stepper component made with Vue
https://bahadirsofuoglu.github.io/form-wizard-vue3/
MIT License
30 stars 6 forks source link

Add a prop to overwrite default class #34

Open jamesallan93 opened 1 year ago

jamesallan93 commented 1 year ago

I think that a prop for overwriting the default class on the <ul/> would be handy. So using js to overwrite wouldn't be needed.

 let form = document.getElementById("form_wiz");
 form?.children[0].classList.add("nav", "nav-pills", "nav-fill");
<FormWizard ulClass="class-1 abc primary">
   _...some code_
</FormWizard>