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