mirror of
https://github.com/yudaocode/yudao-ui-admin-vue3.git
synced 2026-05-13 15:20:35 +00:00
15 lines
261 B
Vue
15 lines
261 B
Vue
<script lang="ts">
|
||
import { defineComponent } from 'vue'
|
||
|
||
export default defineComponent({
|
||
name: 'AddressList'
|
||
})
|
||
</script>
|
||
|
||
<!-- TODO @梦:可以读 address 表 -->
|
||
<template>
|
||
<div>收货地址列表</div>
|
||
</template>
|
||
|
||
<style scoped lang="scss"></style>
|