<template>
<view class="content">
<image class="logo" src="/static/logo.png"></image>
<view class="text-area">
<text class="title">{{ title }}</text>
</view>
<!-- 新增:显示授权码/提示信息 -->
<view class="auth-code" >钉钉免登授权码:{{ authCode }}</view>
</view>
</template>
<script setup lang="uts">
import { ref } from 'vue';
import { onLoad } from '@dcloudio/uni-app';
let title=ref('nTest');
let authCode=ref('leftcode');
onLoad(()=>{
authCode.value="dasdf";
console.log(authCode);
})
</script>
<style>
</style>
谁帮忙给看看。