26 lines
592 B
Vue
26 lines
592 B
Vue
<template>
|
|
<v-card class="fill-height">
|
|
<v-layout row wrap>
|
|
<v-flex xs12>
|
|
<header-box></header-box>
|
|
</v-flex>
|
|
|
|
<v-flex xs12>
|
|
<one-fo-verification-pasien-dokter></one-fo-verification-pasien-dokter>
|
|
</v-flex>
|
|
</v-layout>
|
|
|
|
|
|
</v-card>
|
|
|
|
</template>
|
|
<script>
|
|
module.exports = {
|
|
components : {
|
|
'header-box' : httpVueLoader('./headerBox.vue'),
|
|
'one-fo-verification-pasien-dokter' : httpVueLoader('./oneFOVerificationPasienDokter.vue'),
|
|
|
|
}
|
|
}
|
|
</script>
|