Files
zyt/wx/App.vue
2026-03-06 14:27:24 +08:00

27 lines
418 B
Vue

<template>
<view>
<TUICallKit></TUICallKit>
</view>
</template>
<script>
import TUICallKit from "/TUICallKit/src/Components/TUICallKit";
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<script setup>
</script>
<style>
/*每个页面公共css */
</style>