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.
31 lines
595 B
31 lines
595 B
2 years ago
|
<template>
|
||
|
<DarkLayout>
|
||
|
<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>
|