摘要:
一、基本使用 <template> <view> {{params}} <button @click="goUrl('/pages/index/index')">跳转</button> </view> </template> <script> import { ref, onMounted } fr 阅读全文
摘要:
在Vue 3中,reactive和ref都用于创建响应式的数据,但它们有一些关键的区别: reactive用于创建响应式的对象,该对象的属性是深度响应式的。 ref用于创建响应式的基本类型数据,比如字符串、数字、布尔值等,它是reactive的简化版本,只提供了基本的响应式能力。 一、ref与rea 阅读全文