jcloud/dashboard/src2/views/billing/PaymentMethods.vue

26 lines
487 B
Vue

<template>
<div class="space-y-5">
<AccountBillingDetails />
<AccountBillingCards />
</div>
</template>
<script>
import AccountBillingDetails from './AccountBillingDetails.vue';
import AccountBillingCards from './AccountBillingCards.vue';
export default {
name: 'BillingScreen',
pageMeta() {
return {
title: 'Billing - 今果 Jingrow'
};
},
props: ['invoiceName'],
components: {
AccountBillingDetails,
AccountBillingCards
}
};
</script>