akkoma-fe/src/components/settings/settings.js

20 lines
388 B
JavaScript
Raw Normal View History

2017-02-16 21:25:29 +00:00
import StyleSwitcher from '../style_switcher/style_switcher.vue'
const settings = {
2017-02-22 23:04:47 +00:00
data () {
return {
hideAttachmentsLocal: this.$store.state.config.hideAttachments
}
},
2017-02-16 21:25:29 +00:00
components: {
StyleSwitcher
2017-02-22 23:04:47 +00:00
},
watch: {
hideAttachmentsLocal (value) {
this.$store.dispatch('setOption', { name: 'hideAttachments', value })
}
2017-02-16 21:25:29 +00:00
}
}
export default settings