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

22 lines
335 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-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>