| 123456789101112131415161718192021222324252627 |
- <template>
- <div class="wrapper">
- <text class="title">{{ title }}</text>
- </div>
- </template>
- <script>
- export default {
- private: {
- title: '欢迎体验快应用开发'
- },
- onInit() {}
- }
- </script>
- <style>
- .wrapper {
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .title {
- text-align: center;
- color: #212121;
- }
- </style>
|