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