After the last update, the button type could be set manually overriding Vuesax default as "button". So we could set a button to be submit using:
<vs-button
type="button"
...
</vs-button>
Now the type gets ignored and the button is always set as type="button". This makes forms stop working when the button calls the form submit.
Ready and the problem is solved when I upload you notice to review it I'm updating the select just finished upload the latest version with the arrangement thank you very much
Also just noticed I think the changes to button recently messed up the Dialogs, Confirmations.
Also it messed with buttons that an icon specified, all the sudden they now float left.
You could pass images of the problems, thank you very much for the contribution the documents were updated
You can now add the type property without problem please check thanks
Here is how Dialogs look now:

Also here is how adding an icon affects it:

Then with just adding vs-icon you get this:

For now I've had to work around it by putting the icon in myself doing something like this:
<vs-button
v-on:click="$emit('creator-click')"
vs-color="success"
vs-type="filled"
class="addButton">
<i class="material-icons">add_circle</i>
{{creatorText}}
</vs-button>
But it requires some more css changes to get the icon to be the right size and line up correctly.
Do you have the latest version?
I believe so I'll check.
Ok that seemed to fix it I just did another upgrade. Any idea why material icons are broke now?
Also the floating left on a button with a vs-icon still happens with latest upgrade.
Library icons were removed now you have to add them independently
but in the documents does not happen that if it's weird you could give me a repo or something to verify the problem and fix it
Any quick instructions in docs for installing library icons?
Nevermind I found I can just add
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
to my index.html for now.
If that is the idea, it is very easy to add it but it gave many problems in compilation and unnecessary loaders if you can add the documents on this in a RP would be great thanks
Yeah I don't mind loading it from a CDN I'm loading other google fonts the same way I'm sure some people will want it locally downloaded but works fine for me. Yeah I can add it to the documentation.
<vs-button button="submit" color="success" type="gradient" class="float-right">Click Me </vs-button>
the default type of button is set to button which cause preventing submitting form add button="submit" to change the behavior with in form
@safiullahsarhandi you save my day buddy thanks!
Most helpful comment
<vs-button button="submit" color="success" type="gradient" class="float-right">Click Me </vs-button>the default type of button is set to button which cause preventing submitting form add
button="submit"to change the behavior with in form