2019-01-07 17:26:47 +00:00
|
|
|
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
|
2019-02-05 14:12:14 +00:00
|
|
|
},
|
|
|
|
computed: {
|
2019-02-08 20:17:14 +00:00
|
|
|
showFeaturesPanel () { return this.$store.state.instance.showFeaturesPanel }
|
2019-01-07 17:26:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default About
|