Files
dvcp_v2_wxcp_app/src/project/fd/AppPointsReview/detail.vue

30 lines
319 B
Vue
Raw Normal View History

2023-03-30 14:28:16 +08:00
<template>
<div class="detail">
</div>
</template>
<script>
export default {
name: "detail",
data() {
return {
keyword: '',
areaId: '',
areaName: '',
};
},
onShow() {
},
methods: {
},
};
</script>
<style lang="scss" scoped>
.detail {
height: 100%;
}
</style>