Last active
September 10, 2018 14:43
-
-
Save thirumurthy/8191fac0dddd32ae18f8cf58414e7574 to your computer and use it in GitHub Desktop.
Sails framework v1.0 Ajax form post method ajax-form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<ajax-form action="cloudsetupactionname" :syncing.sync="syncing" :cloud-error.sync="cloudError" @submitted="submittedForm" :handle-parsing="handleParsingForm"> | |
<!-- write other code here --> | |
<p class="text-danger" v-if="cloudError==='error1'"><small>error1.</small></p> | |
<p class="text-danger" v-else-if="cloudError==='error2'"><small>error2.</small></p> | |
<ajax-button type="submit" :syncing="syncing" class="btn-dark btn-lg btn-block">Submit</ajax-button> | |
</ajax-form> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment