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>
|
|
|
|
<div class="center">
|
|
|
|
<DomainBar/>
|
|
|
|
</div>
|
|
|
|
<ZoneTable/>
|
|
|
|
</DarkLayout>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import DomainBar from "../components/DomainBar.vue";
|
|
|
|
import DarkLayout from "../components/DarkLayout.vue";
|
|
|
|
import ZoneTable from "../components/ZoneTable.vue";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "Find",
|
|
|
|
props: {
|
|
|
|
default_domain: {
|
|
|
|
type: String,
|
|
|
|
default: "example"
|
|
|
|
},
|
|
|
|
zone: {
|
|
|
|
type: String,
|
|
|
|
default: ".ton"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {ZoneTable, DarkLayout, DomainBar}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|