vue——5-v-bind及其实例

<div id="enjoy">
    
    
    <img v-bind:src="imgSrc1" :title="title1"  width="400">
    <img :src="imgSrc2" :title="title2"  width="400">
    <p :style="{color:fontColor}">{{msg}}p>
    <p :style="changeStyle">hello world!p>
div>

vue——5-v-bind及其实例_第1张图片
在这里插入图片描述

        {
            new Vue({
                el: '#enjoy',
                data: {
                    imgSrc1: "../images/fashion-001.jpg",
                    imgSrc2: "../images/fashion-001.jpg",
                    title1: 'lucy',
                    title2: 'bob',
                    msg: 'hello boy!',
                    fontColor: 'red',
                    changeStyle: {
                        color: 'blue',
                        fontSize: '40px',
                        backgroundColor: 'grey',
                    }
                }
            })
        }

###实例
vue——5-v-bind及其实例_第2张图片

<div id="enjoy">
    <p v-for="(college,index) in colleges" :class="index === activeIndex ? 'current' : ''">{{college}}p>
div>
        {
            new Vue({
                el: '#enjoy',
                data: {
                    colleges: [
                        'html1学院',
                        'html2学院',
                        'html3学院',
                        'html4学院',
                        'html5学院'
                    ],
                    activeIndex:3
                }
            })
        }

你可能感兴趣的:(vue)