index.vue 458 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view class="content">
  3. <view class="text-area">
  4. <text class="title">{{title}}</text>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. title: '采购清单'
  13. }
  14. },
  15. onLoad() {
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style>
  22. .content {
  23. display: flex;
  24. flex-direction: column;
  25. align-items: center;
  26. justify-content: center;
  27. }
  28. .text-area {
  29. display: flex;
  30. justify-content: center;
  31. }
  32. </style>