vue3 中强制页面更新 使用vue3开发过程中,可以使用$forceUpdate()强制更新 import { getCurrentInstance } from 'vue'; const ins = getCurrentInstance(); const insProxy = ins.proxy; // 强制更新 insProxy.$forceUpdate()