Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ assignees: ''

如果适用,请添加屏幕截图以帮助解释您的问题。 (If applicable, add screenshots to help explain your problem.)

**前端框架和版本 (Front end framework and version):**

- Framework: [e.g. iOS]
- Build Tools [e.g. vite]
- Version [e.g. 18]
- Node Version [e.g. 18.0.0]

**PC 请填写以下信息 (please complete the following information):**

- OS: [e.g. iOS]
Expand Down
5 changes: 5 additions & 0 deletions FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@
<iframe src="..." allow="microphone;"></iframe>
```

## Chrome 超过16个摄像头不播放

Chrome 浏览器单页面 WebGL 上下文数量有限(一般为 16 个),超过后无法再创建新上下文。开发时应注意合理复用和管理,避免超过限制。


## vue3 响应式及 Proxy

由于 vue3 响应式原理(Proxy),使用响应式存储实例可能导致 SDK 异常。请开发者使用 [vue markRaw](https://cn.vuejs.org/api/reactivity-advanced#markraw) 或 非响应式的变量进行存储实例
10 changes: 5 additions & 5 deletions demos/vue3-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
},
"dependencies": {
"ezuikit-js": "8.1.14",
"vue": "^3.2.41"
"vue": "3.4.37"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue": "5.1.2",
"terser": "^5.36.0",
"typescript": "^4.6.4",
"vite": "^3.2.0",
"vue-tsc": "^1.0.9"
"typescript": "^5.3.3",
"vite": "5.4.0",
"vue-tsc": "2.0.29"
}
}
Loading
Loading