Created
February 12, 2017 23:33
-
-
Save evercode1/8d763389f175ae55abb0348ed67f7e15 to your computer and use it in GitHub Desktop.
chapter 15 LessonCreateCategory.vue
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
<template> | |
<div> | |
<!-- Category Select Form --> | |
<div class="form-group"> | |
<label for="category_id">Category Name:</label> | |
<select @change="onChange($event.target.value)" | |
class="form-control" | |
name="category_id"> | |
<option value="">Please Choose One</option> | |
<option v-for="category in categories" | |
v-bind:value="category.id" | |
>{{ category.name }}</option> | |
</select> | |
</div> | |
<!-- Subcategory Select Form --> | |
<div class="form-group" v-if="category > 0"> | |
<label for="subcategory_id">Subcategory Name:</label> | |
<select v-model="defaultOption" class="form-control" name="subcategory_id"> | |
<option value="0">Please Choose One</option> | |
<option v-for="option in options" | |
v-bind:value=" option.id "> | |
{{ option.name }}</option> | |
</select> | |
</div> | |
</div> | |
</template> | |
<script> | |
export default { | |
props: ['subcategories', 'categories'], | |
data () { | |
return { | |
category : '', | |
options: [], | |
defaultOption: 0 | |
} | |
}, | |
methods: { | |
filterSubcategories () { | |
this.options = this.subcategories.filter(subcategories => | |
subcategories.category_id == this.category); | |
}, | |
onChange (value) { | |
this.category = value; | |
this.defaultOption = 0; | |
this.filterSubcategories(); | |
} | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment