mirror of
https://github.com/easychen/pushdeer.git
synced 2024-11-01 16:19:19 +08:00
28 lines
434 B
Plaintext
28 lines
434 B
Plaintext
|
<template>
|
||
|
<div class="wrapper">
|
||
|
<text class="title">{{ title }}</text>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
private: {
|
||
|
title: '欢迎体验快应用开发'
|
||
|
},
|
||
|
|
||
|
onInit() {}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="less">
|
||
|
@import './../../assets/styles/style.less';
|
||
|
|
||
|
.wrapper {
|
||
|
.flex-box-mixins(column, center, center);
|
||
|
.title {
|
||
|
font-size: 8 * @size-factor;
|
||
|
text-align: center;
|
||
|
color: @black;
|
||
|
}
|
||
|
}
|
||
|
</style>
|