赞
踩
今天给大家讲一下在vue3中ref和reactive的使用方法,以及他们的使用区别在哪里,下面通过一个简单的计数器的例子来给大家进行说明
ref 主要用于基本类型的响应,看如下代码:
import {
ref } from 'vue' // 导入ref
interface DataProps {
count: number;
double: number;
increase: () => void
}
export default {
name: 'App',
setup() {
const count = ref(0)
const double
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。