26 lines
488 B
Vue
26 lines
488 B
Vue
<template>
|
|
<div class="space-y-5">
|
|
<AlertBillingInformation />
|
|
<BillingSummary />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import BillingSummary from './BillingSummary.vue';
|
|
import AlertBillingInformation from '@/components/AlertBillingInformation.vue';
|
|
|
|
export default {
|
|
name: 'BillingOverview',
|
|
pageMeta() {
|
|
return {
|
|
title: 'Billing - 今果 Jingrow'
|
|
};
|
|
},
|
|
props: ['invoiceName'],
|
|
components: {
|
|
BillingSummary,
|
|
AlertBillingInformation
|
|
}
|
|
};
|
|
</script>
|