template.ux 434 B

12345678910111213141516171819202122232425262728
  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 lang="less">
  15. @import './../../assets/styles/style.less';
  16. .wrapper {
  17. .flex-box-mixins(column, center, center);
  18. .title {
  19. font-size: 8 * @size-factor;
  20. text-align: center;
  21. color: @black;
  22. }
  23. }
  24. </style>