automngr/resources/js/Components/SellContractCard.vue

24 lines
432 B
Vue

<template>
<contract-card :contract="contract" :meta="meta" />
</template>
<script>
import ContractCard from '@/Components/ContractCard.vue'
export default {
components: {
ContractCard,
},
props: {
contract: Object,
},
data() {
return {
meta: {
'title': 'Verkaufsvertrag',
'contact': 'Käufer',
},
}
},
}
</script>