const realtime \= ref(''); realtime\='errui';//error //取值的时候ref只有唯一的属性value,想要赋值必须加上value realtime.value\='errui';//true
~~~typescript
persons.filter(isUser).forEach(logPerson);
~~~
## TS忽略类型检查
**1\. 单行忽略(添加到特定行的行前来忽略这一行的错误)**
~~~awk
// @ts-ignore
~~~
**2\. 跳过对某些文件的检查 (添加到该文件的首行才起作用)**
~~~awk
// @ts-nocheck
~~~
**3\. 对某些文件的检查**
~~~awk
// @ts-check
~~~