37 lines
433 B
Plaintext
37 lines
433 B
Plaintext
<template>
|
|
<view>
|
|
<image class="logo" src="/static/logo.png"></image>
|
|
<text class="title">{{title}}</text>
|
|
</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>
|