You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
471 B
39 lines
471 B
1 month ago
|
<template>
|
||
|
<view>
|
||
|
<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>
|
||
|
.logo {
|
||
|
height: 100px;
|
||
|
width: 100px;
|
||
|
margin: 100px auto 25px auto;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
font-size: 18px;
|
||
|
color: #8f8f94;
|
||
|
text-align: center;
|
||
|
}
|
||
|
</style>
|