2023-08-23 01:41:25 +08:00

15 lines
261 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({
name: 'AddressList'
})
</script>
<!-- TODO @可以读 address -->
<template>
<div>收货地址列表</div>
</template>
<style scoped lang="scss"></style>