30 lines
319 B
Vue
30 lines
319 B
Vue
|
|
<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>
|