VUE----hello world & v-bind & v-on

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title>vue</title>
    <style>
        .bg {
            color: red
        }
    </style>
    <!-- bootcdn.cn 上面找一個適合自己的vue版本 -->
    <script src="https://cdn.bootcss.com/vue/2.6.11/vue.min.js"></script>
</head>

<body>
    <!-- 塊狀元素 -->
    <div id="app">
        <!-- v-bind可以簡寫爲: -->
        <div class="bg" :id="bg1">
            hello world!
            {{msg}}
        </div>
        <div class="bg">
            {{msg}}
            
        </div>
        <!-- 插值表達式裏面可以放置javascript表達式 -->
        {{count}}{{(count + 1) * 10}}
        <!-- 輸出html-->
        <div v-html="template"></div>

        <a :href="url">imooc</a>

        <!-- v-on可以簡寫爲@ -->
        <button type="button" @click="submit()">加數字</button>
    </div>

    <!-- 腳本 -->
    <script>
        new Vue({
            el: '#app', //優先綁定第一個
            data: {
                msg: 'hello vue!',
                count: 0,
                url: 'http://imooc.com',
                template: '<div>hello template</div>',
                bg1: 'app-bind'
            },
            methods: {
                submit : function() {
                    // this 代表的就是vue這個對象
                    this.count ++
                }
            }
        })
    </script>
</body>

</html>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章