aboutsummaryrefslogblamecommitdiff
path: root/resources/js/components/call-sign-filter.vue
blob: 07d339de1299801eac786d0e3ae6c22b03b104f0 (plain) (tree)
1
2
3
4
5
6
7
8
9
          



                                                                               



                
             
                                      

             

               
                                                   

                  
                                                       

       
               
                                          

     

         
<template>
  <select v-model="selected">
    <option value="all">All</option>
    <option v-for="option in options" :value="option" v-text="option"></option>
  </select>
</template>

<script>
export default {
  mounted() {
    this.$store.dispatch('fillSigns');
  },
  computed: {
    selected: {
      get() {
        return this.$store.getters.getSelectedSign;
      },
      set(value) {
        this.$store.dispatch('setSelectedSign', value);
      }
    },
    options() {
      return this.$store.getters.getSigns;
    }
  }
}
</script>