13 lines
248 B
Vue
Raw Normal View History

<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>