Files
tk-mini-program/pages/Mine/minecomponents/contact.vue
pengxiaolong 050ceedd59 优化页面
2025-05-30 22:04:45 +08:00

31 lines
509 B
Vue

<template>
<view class="contact">
<h1>联系方式</h1>
</view>
</template>
<script>
export default {
data() {
return {
title: 'Hello'
}
},
onLoad() {
// 页面加载时执行
},
methods: {
// 方法定义
}
}
</script>
<style scoped>
.contact{
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
</style>