font-size.uvue 562 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view style="flex-grow: 1;">
  3. <view style="height: 250px;background-color: gray;justify-content: center;align-items: center;">
  4. <text ref="text" :style="{'font-size': fontSize}">font-size: {{fontSize}}</text>
  5. <text style="font-size: 30px;">font-size: 30px</text>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. fontSize: '15px'
  14. }
  15. },
  16. methods: {
  17. // 自动化测试
  18. setFontSize() {
  19. this.fontSize = '30px';
  20. }
  21. }
  22. }
  23. </script>
  24. <style>
  25. </style>