index.ux 369 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="wrapper">
  3. <text class="title">{{ title }}</text>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. private: {
  9. title: '欢迎体验快应用开发'
  10. },
  11. onInit() {}
  12. }
  13. </script>
  14. <style>
  15. .wrapper {
  16. flex-direction: column;
  17. justify-content: center;
  18. align-items: center;
  19. }
  20. .title {
  21. text-align: center;
  22. color: #212121;
  23. }
  24. </style>