2022-02-15 15:55:09 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="detail">
|
2022-02-15 16:23:27 +08:00
|
|
|
<div>
|
|
|
|
|
|
|
|
|
|
</div>
|
2022-02-15 15:55:09 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
2022-02-15 16:23:27 +08:00
|
|
|
name: 'detail',
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {},
|
|
|
|
|
onShow() {},
|
|
|
|
|
onLoad() {},
|
2022-02-15 15:55:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
2022-02-15 16:23:27 +08:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.detail {
|
2022-02-15 15:55:09 +08:00
|
|
|
|
2022-02-15 16:23:27 +08:00
|
|
|
}
|
2022-02-15 15:55:09 +08:00
|
|
|
</style>
|