aboutsummaryrefslogtreecommitdiff
path: root/src/components/settings/settings.js
blob: 61236af2b5aa2005865dc50bba37b29bf8987d8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import StyleSwitcher from '../style_switcher/style_switcher.vue'

const settings = {
  data () {
    return {
      hideAttachmentsLocal: this.$store.state.config.hideAttachments
    }
  },
  components: {
    StyleSwitcher
  },
  watch: {
    hideAttachmentsLocal (value) {
      this.$store.dispatch('setOption', { name: 'hideAttachments', value })
    }
  }
}

export default settings