aboutsummaryrefslogtreecommitdiff
path: root/src/components/about/about.js
blob: ae1cb1821a4ea22850f76f06146793ec5eefeff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import InstanceSpecificPanel from '../instance_specific_panel/instance_specific_panel.vue'
import FeaturesPanel from '../features_panel/features_panel.vue'
import TermsOfServicePanel from '../terms_of_service_panel/terms_of_service_panel.vue'

const About = {
  components: {
    InstanceSpecificPanel,
    FeaturesPanel,
    TermsOfServicePanel
  },
  computed: {
    showFeaturesPanel () { return this.$store.state.instance.showFeaturesPanel }
  }
}

export default About