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

26 lines
335 B
Vue
Raw Normal View History

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