Skip to content

Instantly share code, notes, and snippets.

@phuclh
Created February 19, 2020 13:54
Show Gist options
  • Save phuclh/2ca2a7e729db4784b55a1418c99d1ddc to your computer and use it in GitHub Desktop.
Save phuclh/2ca2a7e729db4784b55a1418c99d1ddc to your computer and use it in GitHub Desktop.
<select id="payment_method" class="w-full form-control form-select"
v-model="payment_method">
<option value="Credit Card">Credit Card</option>
<option value="COD">COD</option>
</select>
data() {
return {
payment_method: 'Credit Card'
}
},
watch: {
payment_method: function (val) {
this.$store.commit('order/setPaymentMethod', {
attribute: 'payment_method',
value: val
});
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment