使用 uniapp vue3 开发抖音小程序,ios 从首页导航到某一个页面偶尔会出现无法正确渲染变量的情况,头条的正常
<template>
<view style="padding: 60px">{{ currentPage }} / {{ totalPage }}</view>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
const currentPage = ref(1);
const totalPage = 999;
</script>