mirror of
https://gitee.com/dcloud/uni-preset-vue
synced 2025-04-29 16:30:12 +08:00
29 lines
361 B
Vue
29 lines
361 B
Vue
<template>
|
|
<view class="content">
|
|
<text class="title">{{title}}</text>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
title: 'Hello'
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.content {
|
|
flex: 1;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.title {
|
|
font-size: 36upx;
|
|
color: #8f8f94;
|
|
}
|
|
</style>
|