font-size.uvue 550 字节
Newer Older
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
1 2
<template>
	<view style="flex-grow: 1;">
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
3
		<view style="height: 250px;background-color: gray;justify-content: center;align-items: center;">
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
4
			<text ref="text" :style="{'font-size': fontSize}">font-size: {{fontSize}}</text>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
5 6 7 8 9 10
			<text style="font-size: 30px;">font-size: 30px</text>
		</view>
	</view>
</template>

<script>
11 12 13
  export default {
    data() {
      return {
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
14
        fontSize: '15px'
15 16 17 18 19
      }
    },
    methods: {
      // 自动化测试
      setFontSize() {
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
20
        this.fontSize = '30px';
21 22 23
      }
    }
  }
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
24 25 26 27
</script>

<style>

28
</style>