13 lines
248 B
Vue
13 lines
248 B
Vue
![]() |
<template>
|
||
|
<div>
|
||
|
<common current-name="land">
|
||
|
<template #main>
|
||
|
<div>土地交易</div>
|
||
|
</template>
|
||
|
</common>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script setup name="ecommerce">
|
||
|
import common from './components/common.vue';
|
||
|
</script>
|