zoukankan      html  css  js  c++  java
  • 09.vue中样式-style

    <!DOCTYPE html>

    <html lang="en">

    <head>

      <meta charset="UTF-8">

      <meta name="viewport" content="width=device-width, initial-scale=1.0">

      <meta http-equiv="X-UA-Compatible" content="ie=edge">

      <title>Document</title>

      <script src="./lib/vue-2.4.0.js"></script>

    </head>

    <body>

      <div id="app">

        <!-- 对象就是无序键值对的集合 -->

        <!-- <h1 :style="styleObj1">这是一个h1</h1> -->

        <h1 :style="[ styleObj1, styleObj2 ]">这是一个h1</h1>

      </div>

      <script>

        // 创建 Vue 实例,得到 ViewModel

        var vm = new Vue({

          el: '#app',

          data: {

            styleObj1: { color: 'red', 'font-weight': 200 },

            styleObj2: { 'font-style': 'italic' }

          },

          methods: {}

        });

      </script>

    </body>

    </html>

  • 相关阅读:
    qsort
    strcmp
    LotteryDrawing
    retire or not retire ? is a question.
    alloc && afree
    strlen
    c point
    c point ccccc
    MySQL MGR源码分析2
    MySQL MGR实现分析
  • 原文地址:https://www.cnblogs.com/cristin/p/9115681.html
Copyright © 2011-2022 走看看