Implements board filters

This commit is contained in:
Michael Weimann
2018-12-04 00:10:58 +01:00
parent bd349a677d
commit 5ea20e1268
3 changed files with 54 additions and 8 deletions

View File

@@ -22,13 +22,24 @@
<template>
<div class="deck-main">
Main
Boards
</div>
</template>
<script>
export default {
name: 'Main'
name: 'Main',
props: {
navFilter: {
type: String,
default: ''
}
},
watch: {
navFilter: function(value) {
this.$store.commit('nav/setFilter', value)
}
}
}
</script>