21 lines
527 B
Vue
21 lines
527 B
Vue
<template>
|
|
<v-card class="pa-1">
|
|
<v-layout row wrap>
|
|
<v-flex xs12>
|
|
<header-box></header-box>
|
|
</v-flex>
|
|
</v-layout>
|
|
<one-fo-verification-kirim-payment></one-fo-verification-kirim-payment>
|
|
|
|
</v-card>
|
|
</template>
|
|
<script>
|
|
module.exports = {
|
|
components : {
|
|
'header-box' : httpVueLoader('./headerBox.vue'),
|
|
'one-fo-verification-kirim-payment' : httpVueLoader('./oneFOVerificationKirimPayment.vue'),
|
|
|
|
}
|
|
}
|
|
</script>
|