工程结构调整,同时在一个仓库中开发前端和后端

This commit is contained in:
aixianling
2022-12-30 10:11:49 +08:00
parent 4684d1d4cd
commit cfaef6713b
13 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,48 @@
<template>
<view class="content">
<image class="logo" src="/static/logo.png"></image>
<view class="text-area">
<text class="title">{{ title }}</text>
</view>
</view>
</template>
<script>
export default {
data() {
return {
title: 'Hello',
}
},
onLoad() {},
methods: {},
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
height: 200px;
width: 200px;
margin-top: 200px;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
}
.text-area {
display: flex;
justify-content: center;
}
.title {
font-size: 36px;
color: #8f8f94;
}
</style>