var detailPatientComponent = { template : ` `, data() { return { query: "" }; }, computed : { p_mr() { // return "*"; return this.$store.state.patient.currSelected.mr; }, p_name() { // return "*"; return this.$store.state.patient.currSelected.name; }, p_dob() { // return "*"; return this.$store.state.patient.currSelected.dob; } } } export { detailPatientComponent }