byt-lingxiao-ai 0.3.12 → 0.3.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +224 -0
- package/components/mixins/webSocketMixin.js +1 -1
- package/dist/index.common.js +1 -1
- package/dist/index.common.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.umd.js
CHANGED
|
@@ -31325,7 +31325,7 @@ const TIME_JUMP_POINTS_URL = '/minio/lingxiaoai/timeJumpPoints.json'; // 语音u
|
|
|
31325
31325
|
methods: {
|
|
31326
31326
|
initWebSocket() {
|
|
31327
31327
|
try {
|
|
31328
|
-
this.ws = new WebSocket(
|
|
31328
|
+
this.ws = new WebSocket('ws://10.2.233.41:9999');
|
|
31329
31329
|
this.ws.binaryType = 'arraybuffer';
|
|
31330
31330
|
this.ws.onopen = async () => {
|
|
31331
31331
|
console.log('WebSocket 连接成功');
|