中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

vue中動態添加style樣式的寫法有哪些

vue
小億
150
2024-03-08 15:02:24
欄目: 編程語言

  1. 使用對象語法:
<template>
  <div :style="dynamicStyles"></div>
</template>

<script>
export default {
  data() {
    return {
      dynamicStyles: {
        color: 'red',
        fontSize: '16px',
      }
    };
  }
};
</script>
  1. 使用數組語法:
<template>
  <div :style="[baseStyles, dynamicStyles]"></div>
</template>

<script>
export default {
  data() {
    return {
      baseStyles: {
        color: 'blue',
        fontSize: '14px',
      },
      dynamicStyles: {
        color: 'red',
        fontSize: '16px',
      }
    };
  }
};
</script>
  1. 使用計算屬性:
<template>
  <div :style="computedStyles"></div>
</template>

<script>
export default {
  data() {
    return {
      color: 'red',
      fontSize: '16px',
    };
  },
  computed: {
    computedStyles() {
      return {
        color: this.color,
        fontSize: this.fontSize,
      };
    }
  }
};
</script>

0
南涧| 越西县| 威远县| 武清区| 苍南县| 宁阳县| 依兰县| 北京市| 黄平县| 龙海市| 房产| 宜阳县| 行唐县| 中方县| 大田县| 碌曲县| 尼木县| 忻州市| 仙居县| 广丰县| 三台县| 临沧市| 伊吾县| 山阳县| 陆良县| 贵定县| 宾阳县| 扶绥县| 平顶山市| 富阳市| 高淳县| 惠安县| 绥芬河市| 清流县| 思茅市| 三门峡市| 百色市| 焦作市| 太白县| 凉城县| 资阳市|