24 lines
343 B
Vue
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>
|