Files
tk-mini-program/App.vue

43 lines
725 B
Vue
Raw Normal View History

2025-05-13 19:39:53 +08:00
<script lang="ts">
2025-05-19 18:34:04 +08:00
2025-05-20 00:10:07 +08:00
// #ifdef APP-PLUS || H5
2025-05-27 21:05:01 +08:00
import { TUIChatKit } from './TUIKit';
2025-05-19 18:34:04 +08:00
2025-05-13 19:39:53 +08:00
TUIChatKit.init();
// #endif
// Required information
// You can get userSig from TencentCloud chat console for Testing TUIKit.
// Deploy production environment please get it from your server.
// View https://cloud.tencent.com/document/product/269/32688
export default {
2025-05-20 00:10:07 +08:00
data() {
2025-05-19 18:34:04 +08:00
return {
2025-05-20 00:10:07 +08:00
info: {},
userSig: "",
chatInfo: {},
};
},
onLoad(option) {
2025-05-19 18:34:04 +08:00
},
2025-05-20 00:10:07 +08:00
provide() {
return {
$global: {
lastPage: null,
},
};
},
2025-05-13 19:39:53 +08:00
};
</script>
2025-05-12 14:12:36 +08:00
<style>
2025-05-13 19:39:53 +08:00
/* common css for page */
2025-05-20 00:10:07 +08:00
uni-page-body,
html,
body,
page {
2025-05-13 19:39:53 +08:00
width: 100% !important;
height: 100% !important;
overflow: hidden;
}
2025-05-20 00:10:07 +08:00
</style>