yandere_fe/src/components/settings/settings.js

24 lines
546 B
JavaScript
Raw Normal View History

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