1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-22 07:42:36 +00:00
bramw_baserow/web-frontend/modules/builder/components/domain/SubDomainDetails.vue
2024-04-15 11:29:17 +00:00

30 lines
495 B
Vue

<template>
<div>
<p>
{{ $t('subDomainDetails.text') }}
</p>
<div class="actions actions--right">
<Button
type="danger"
:loading="domain._.loading"
:disabled="domain._.loading"
@click="$emit('delete')"
>
{{ $t('action.delete') }}</Button
>
</div>
</div>
</template>
<script>
export default {
name: 'SubDomainDetails',
props: {
domain: {
type: Object,
required: true,
},
},
}
</script>