mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-06-20 23:32:01 +08:00
14 lines
218 B
Vue
14 lines
218 B
Vue
<script lang="ts">
|
|
import { defineComponent } from 'vue'
|
|
|
|
export default defineComponent({
|
|
name: 'AddressList'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>收货地址列表</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss"></style>
|