代码
<template>
<view>
{{data.ts}}
</view>
</template>
<script lang="ts" setup>
import { reactive } from 'vue';
import { onLoad } from "@dcloudio/uni-app"
const data=reactive({
ts:1
})
onLoad(()=>{
data['ts']=3
})
</script>
<style>
</style>
<template>
<view>
{{data.ts}}
</view>
</template>
<script lang="ts" setup>
import { reactive } from 'vue';
import { onLoad } from "@dcloudio/uni-app"
const data=reactive({
ts:1
})
onLoad(()=>{
data['ts']=3
})
</script>
<style>
</style>