Skip to content

Commit d5e4389

Browse files
committed
doc: update
1 parent 8ab9fc0 commit d5e4389

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

FAQ.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,17 @@
44

55
在 iframe 中使用需要配置 `allow="microphone"`
66

7-
87
## [iframe](https://developer.mozilla.org/zh-CN/docs/Web/HTML/Reference/Elements/iframe)
98

10-
在iframe中,需要设置[同源策略](https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Reference/Headers/Permissions-Policy#iframe)
9+
在 iframe 中,需要设置[同源策略](https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Reference/Headers/Permissions-Policy#iframe)
1110

1211
- [iframe 当全屏请求失败时](https://developer.mozilla.org/zh-CN/docs/Web/API/Fullscreen_API/Guide#%E5%BD%93%E5%85%A8%E5%B1%8F%E8%AF%B7%E6%B1%82%E5%A4%B1%E8%B4%A5%E6%97%B6)
1312

1413
`allowfullscreen` 设置为 true 时,可以通过调用 `<iframe>``requestFullscreen()` 方法激活全屏模式。
1514

1615
```html
1716
<!-- 允许 iframe 激活全屏 -->
18-
<iframe src="..." allowfullscreen="tuue"></iframe>
17+
<iframe src="..." allowfullscreen="true"></iframe>
1918
```
2019

2120
- [iframe 麦克风使用](https://developer.mozilla.org/zh-CN/docs/Web/HTML/Reference/Elements/iframe#allow)
@@ -27,7 +26,6 @@
2726
<iframe src="..." allow="microphone;"></iframe>
2827
```
2928

30-
## vue3 响应式及Proxy
29+
## vue3 响应式及 Proxy
3130

32-
由于vue3 响应式原理(Proxy),使用响应式存储实例可能导致SDK异常。请开发者使用 [vue markRaw](https://cn.vuejs.org/api/reactivity-advanced#markraw) 或 非响应式的变量进行存储实例
33-
31+
由于 vue3 响应式原理(Proxy),使用响应式存储实例可能导致 SDK 异常。请开发者使用 [vue markRaw](https://cn.vuejs.org/api/reactivity-advanced#markraw) 或 非响应式的变量进行存储实例

0 commit comments

Comments
 (0)