65 lines
1.1 KiB
Vue
65 lines
1.1 KiB
Vue
<template>
|
|
|
|
<v-dialog
|
|
v-model="dialog"
|
|
|
|
>
|
|
<v-btn
|
|
slot="activator"
|
|
color="blue"
|
|
dark
|
|
block
|
|
class="mt-0"
|
|
>
|
|
Histori
|
|
</v-btn>
|
|
|
|
<v-card>
|
|
<v-card-title
|
|
class="headline grey lighten-2 pt-2 pb-2"
|
|
primary-title
|
|
|
|
>
|
|
Data Pasien
|
|
</v-card-title>
|
|
|
|
<v-card-text class="pt-2 pb-2">
|
|
<patient-history></patient-history>
|
|
</v-card-text>
|
|
|
|
<v-divider></v-divider>
|
|
|
|
<v-card-actions>
|
|
<v-spacer></v-spacer>
|
|
<v-btn
|
|
color="primary"
|
|
flat
|
|
@click="dialog = false"
|
|
>
|
|
Tutup
|
|
</v-btn>
|
|
</v-card-actions>
|
|
</v-card>
|
|
</v-dialog>
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
.v-dialog__container {
|
|
display: block !important;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
module.exports = {
|
|
components : {
|
|
'patient-history': httpVueLoader('./patientHistory.vue')
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
dialog: false
|
|
}
|
|
}
|
|
}
|
|
</script> |