React frontend for Agorata
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<DarkLayout>
|
|
|
|
<!-- todo: button to go back + this whole view -->
|
|
|
|
<DomainBar :value="core_domain" :zone="'.' + zone" :has_button="false" :editable="false"/>
|
|
|
|
</DarkLayout>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import DarkLayout from "../components/DarkLayout.vue";
|
|
|
|
import DomainBar from "../components/DomainBar.vue";
|
|
|
|
export default {
|
|
|
|
name: "Explore",
|
|
|
|
components: {DomainBar, DarkLayout},
|
|
|
|
props: {
|
|
|
|
domain: {
|
|
|
|
type: String,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
core_domain() {
|
|
|
|
return this.domain.split('.')[0];
|
|
|
|
},
|
|
|
|
zone() {
|
|
|
|
return this.domain.split('.').slice(1).join('.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|