Files
dvcp_v2_wxcp_app/src/apps/AppEpidemicSituation/HealthDetail.vue

26 lines
339 B
Vue
Raw Normal View History

2022-01-10 14:16:05 +08:00
<template>
<div class="HealthDetail">HealthDetail</div>
</template>
<script>
export default {
name: 'HealthDetail',
components: {},
props: {},
data() {
return {}
},
computed: {},
watch: {},
onLoad() {},
onShow() {},
methods: {},
}
</script>
<style scoped lang="scss">
.HealthDetail {
height: 100%;
}
</style>