Files
tk-mini-program/pages/index/index.vue
pengxiaolong 5f8ff971d4 消息
2025-05-13 22:16:09 +08:00

24 lines
343 B
Vue

<template></template>
<script>
export default {
data() {
return {
title: "Hello",
};
},
onLoad() {
this.openConversationList();
},
methods: {
openConversationList() {
uni.navigateTo({ url: "/TUIKit/components/TUIConversation/index" });
},
},
};
</script>
<style scoped>
/* 样式定义 */
</style>