12345678910111213141516171819202122232425262728 |
- <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>
|