Files
tk-mini-program/pages/index/index.vue

24 lines
566 B
Vue
Raw Normal View History

2025-05-14 16:09:14 +08:00
<template>
</template>
2025-05-13 22:16:09 +08:00
<script>
2025-05-15 22:24:39 +08:00
//此页面用于聊天的链接入口,请不要在这里添加内容,不要删除此页面,否则会导致编译失败
//这里虽然看不出任何于聊天有关的内容,但为了防止编译失败,请保留此页面
2025-05-14 16:09:14 +08:00
export default {
data() {
return {
title: 'Hello'
}
},
onLoad() {
// 页面加载时执行
},
methods: {
// 方法定义
}
}
2025-05-13 22:16:09 +08:00
</script>
<style scoped>
2025-05-14 16:09:14 +08:00
/* 样式定义 */
</style>