mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-22 07:42:36 +00:00
30 lines
495 B
Vue
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>
|