Update eslint config

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-01-05 18:54:00 +01:00
parent 900afbbb6b
commit 6bbfe00474
37 changed files with 540 additions and 543 deletions

View File

@@ -48,27 +48,27 @@ import Controls from '../Controls'
import { mapGetters } from 'vuex'
export default {
name: 'Main',
name: 'Boards',
components: {
BoardItem,
Controls
Controls,
},
props: {
navFilter: {
type: String,
default: ''
}
default: '',
},
},
computed: {
...mapGetters([
'filteredBoards'
])
'filteredBoards',
]),
},
watch: {
navFilter: function(value) {
this.$store.commit('setBoardFilter', value)
}
}
},
},
}
</script>