UserDetail

This commit is contained in:
花有清香月有阴
2022-01-10 15:05:53 +08:00
parent f7bb0e9c3a
commit 1f50fa659a
4 changed files with 254 additions and 4 deletions

View File

@@ -0,0 +1,25 @@
<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>