30 lines
294 B
Vue
30 lines
294 B
Vue
<template>
|
|
<view class="content">
|
|
页面 - 4
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
title: 'Hello'
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.content {
|
|
text-align: center;
|
|
height: 400upx;
|
|
margin-top: 200upx;
|
|
}
|
|
</style>
|