12 lines
195 B
Vue
12 lines
195 B
Vue
<script setup>
|
|
import EditBox from './add.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<view class="address-edit">
|
|
<EditBox type="edit"></EditBox>
|
|
</view>
|
|
</template>
|
|
|
|
<style lang="scss" scoped></style>
|