31 lines
509 B
Vue
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> |