feat: 初始化

This commit is contained in:
George
2025-07-07 16:05:18 +08:00
commit c169958240
986 changed files with 132574 additions and 0 deletions

View File

@ -0,0 +1,25 @@
<template>
<view>
<web-view :src="host + '/static/html/livechat.html'" @message="handleMsg"></web-view>
</view>
</template>
<script>
import { app_host } from '@/utils/request'
export default {
data() {
return {
host: app_host.replace('/api', '')
}
},
methods: {
handleMsg(data) {
console.log(data)
}
}
}
</script>
<style>
</style>