33 lines
558 B
Vue
33 lines
558 B
Vue
<template>
|
|
|
|
<v-layout column>
|
|
|
|
<v-flex xs12 class="">
|
|
<one-fo-clinic-registration-payment></one-fo-clinic-registration-payment>
|
|
</v-flex>
|
|
</v-layout>
|
|
|
|
</template>
|
|
<script>
|
|
module.exports = {
|
|
components: {
|
|
'one-fo-clinic-registration-payment' : httpVueLoader('./oneFoClinicRegistrationPayment2.vue')
|
|
},
|
|
computed: {
|
|
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
watch : {
|
|
|
|
},
|
|
mounted: function() {
|
|
|
|
},
|
|
data() {
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|