123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view class="content">
- <text class="title">我的</text>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: '我的'
- }
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding-top: 100rpx;
- }
- .title {
- font-size: 36rpx;
- color: #333;
- }
- </style>
|