You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
714 B
34 lines
714 B
2 years ago
|
<template>
|
||
|
<select-patient-date :show-code="false"
|
||
|
:days="0"
|
||
|
:show-navbar="false"
|
||
|
:show-date="false"></select-patient-date>
|
||
|
</template>
|
||
|
<script>
|
||
|
import { reactive } from 'vue'
|
||
|
import { route } from 'vue-helper'
|
||
|
import { axios } from 'axios'
|
||
|
import { SetView } from '@/utils/common-util.mjs'
|
||
|
import { store } from 'vue-helper'
|
||
|
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
'select-patient-date': VueConfig.vueLoader('@/components/patient/select-patient-date.vue')
|
||
|
},
|
||
|
|
||
|
setup(props) {
|
||
|
const biInfo = reactive({
|
||
|
url: '',
|
||
|
description: ''
|
||
|
})
|
||
|
return {
|
||
|
biInfo,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
</script>
|
||
|
<style>
|
||
|
|
||
|
</style>
|