mirror of
https://gitee.com/xiongmao1988/rax-medical.git
synced 2025-08-24 13:04:57 +08:00
19 lines
352 B
Vue
19 lines
352 B
Vue
![]() |
<template>
|
||
|
<div></div>
|
||
|
</template>
|
||
|
|
||
|
<script lang='ts' setup>
|
||
|
import { onMounted, reactive, ref, toRefs, watch } from 'vue'
|
||
|
import { useRouter } from 'vue-router'
|
||
|
import { useRemoteStore } from '@/stores/remote-info-store'
|
||
|
import MessagePart from './part/message-part.vue'
|
||
|
|
||
|
const router = useRouter()
|
||
|
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style lang='scss' scoped>
|
||
|
|
||
|
</style>
|