yandere_fe/src/components/features_panel/features_panel.js

12 lines
501 B
JavaScript
Raw Normal View History

2018-09-02 22:43:10 -07:00
const FeaturesPanel = {
computed: {
2018-09-02 23:23:09 -07:00
mediaProxy: function () { return this.$store.state.config.mediaProxyAvailable },
whoToFollow: function () { return this.$store.state.config.suggestionsEnabled },
scopeOptions: function () { return this.$store.state.config.scopeOptionsEnabled },
formattingOptions: function () { return this.$store.state.config.formattingOptionsEnabled },
textlimit: function () { return this.$store.state.config.textlimit }
2018-09-02 22:43:10 -07:00
}
}
export default FeaturesPanel