vue 的 class 與 style 使用

weixin_34050427發表於2019-01-24

使用物件的語法,鍵對應的就是實際的 calss 值,值對應的是 true 或 false
使用陣列的語法,值對應的是 vue data 裡面的此值對應的值
style 就相當於是直接在這裡寫了 style

<html>
<head>
    <meta charset="utf-8">
    <title>Vue class與style測試</title>
    <script src="https://cdn.bootcss.com/vue/1.0.14/vue.min.js"></script>
    <style>
        .red {
            background: red;
            width: 100px;
            height: 100px;
        }
        .green {
            background: green;
            width: 100px;
            height: 100px;
        }
    </style>
</head>
<body>

<div id="app">
    <p>物件語法</p>
    <div v-bind:class="{red:true}">顯示紅色區塊</div>
    <div v-bind:class="{red:false}">不顯示</div>
    <div v-bind:class="{red:hide}">值是變數</div>

    <p>陣列語法</p>
    <div v-bind:class="[green_color]">不顯示</div>
    <p>style 測試</p>
    <div v-bind:style="styleObject"></div>
</div>
<script>
    new Vue({
        el: '#app',
        data: {
            hide:false,
            green_color:'green',
            styleObject: {
                background: 'blue',
                fontSize: '13px',
                height:'100px',
                width:'100px',

            }
        }
    });
</script>
</body>
</html>

相關文章