16 lines
474 B
JavaScript
16 lines
474 B
JavaScript
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
|