16 lines
246 B
Vue
16 lines
246 B
Vue
<template>
|
||
<view>{{ name }}</view>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { ref } from 'vue'
|
||
import { onLoad } from '@dcloudio/uni-app'
|
||
|
||
const name = ref('登1录')
|
||
onLoad(e => {
|
||
console.log('接收==:', e.id)
|
||
})
|
||
</script>
|
||
|
||
<style></style>
|