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.
38 lines
471 B
38 lines
471 B
<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>
|
|
|