Files
dvcp_v2_wechat_app/src/mods/AppIntegralApply/detail.vue

26 lines
317 B
Vue
Raw Normal View History

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