Liuyi
2024-09-28 77c2bdd45ca70e57667b346585edc5034cbd821e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<template>
    <view>
        <navbar title ='编辑地址'></navbar>
    </view>
</template>
 
<script setup>
    import {ref,onMounted} from 'vue'
    import { onLoad } from "@dcloudio/uni-app"
    
    const title = ref()
    const id = ref()
    onLoad((option)=>{
        title.value = option.title
        id.value = option.id
        console.log('123',title.value,id.value)
    })
</script>
 
<style>
           
</style>