Vue 将样式绑定到一个对象让模板更清晰

Vue 将样式绑定到一个对象让模板更清晰

    <div id="app">
        <div v-bind:style="styleObject">样式绑定到一个对象</div>
    </div>
    <script>
    new Vue({
        el: '#app',
        data: {
            styleObject: {
                color: 'green',
                fontSize: '30px'
            }
        }
    })

posted on 2018-07-19 11:53  建伟F4nniu  阅读(208)  评论(0编辑  收藏  举报

导航