Created
April 16, 2019 14:02
-
-
Save kabitacode/d848063d1f041394f89f0033c8f9c9bf to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<form @submit.prevent="add"> | |
<input type="hidden" v-model="form.id"> | |
<input type="text" v-model="form.name"> | |
<button type="submit" v-show="!updateSubmit">add</button> <!-- jika tidak update maka tombol update tidak muncul --> | |
<button type="button" v-show="updateSubmit" @click="update(form)">Update</button> <!-- jika tombol edit di klik maka tombol add akan berubah menjadi update --> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment