91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue組件化的實例分析

發布時間:2021-10-19 14:52:09 來源:億速云 閱讀:126 作者:小新 欄目:web開發

這篇文章將為大家詳細講解有關vue組件化的實例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

全局組件

<!DOCTYPE html>
<html>
<head>
    <title>vue</title>
    <!-- <script src="./vue.js"></script> -->
    <script src="http://cdn.staticfile.org/vue/2.6.10/vue.common.dev.js"></script>
</head>
<body>
    <div id="root">
        <input v-model="inputValue"/>
        <button @click="addTextFunc">提交</button>
        <ul>
            <todo-item v-bind:content="item" v-for="item in list"></todo-item>
        </ul>
    </div>
    <script>
        //全局組件
        Vue.component("TodoItem", {
            props: ["content"],
            template: "<li>{{content}}</li>"
        })
        var app = new Vue({
            el: "#root",
            data: {
                list: []
            },
            methods: {
                addTextFunc: function() {
                    this.list.push(this.inputValue)
                    this.inputValue = ""
                }
            }
        });
    </script>
</body>
</html>

局部組件

<!DOCTYPE html>
<html>
<head>
    <title>vue</title>
    <!-- <script src="./vue.js"></script> -->
    <script src="http://cdn.staticfile.org/vue/2.6.10/vue.common.dev.js"></script>
</head>
<body>
    <div id="root">
        <input v-model="inputValue"/>
        <button @click="addTextFunc">提交</button>
        <ul>
            <todo-item v-bind:content="item" v-for="item in list"></todo-item>
        </ul>
    </div>
    <script>
        //局部組件
        var TodoItem = {
            props: ['content'],
            template: "<li>{{content}}</li>"
        }
        var app = new Vue({
            el: "#root",
            //注冊TodoItem組件
            components: {
                TodoItem: TodoItem //命名叫TodoItem,在實例中也叫TodoItem
            },
            data: {
                list: []
            },
            methods: {
                addTextFunc: function() {
                    this.list.push(this.inputValue)
                    this.inputValue = ""
                }
            }
        });
    </script>
</body>
</html>

子組件、父組件雙向傳遞數據

<!DOCTYPE html>
<html>
<head>
    <title>vue</title>
    <script src="./vue.js"></script>
    <!-- <script src="http://cdn.staticfile.org/vue/2.6.10/vue.common.dev.js"></script> -->
</head>
<body>
    <div id="root">
        <input v-model="inputValue"/>
        <button @click="addTextFunc">提交</button>
        <ul>
            "v-bind:"可以簡寫為":"
            <todo-item v-bind:content="item" v-bind:index="index" v-for="(item, index) in list" @delete="handleItemDelete"></todo-item>
        </ul>
    </div>
    <script>
        //局部組件
        var TodoItem = {
            props: ['content', 'index'], //要使用就要聲明(父組件給子組件傳值,子組件要接收!)
            //v-on:click的簡寫:@click
            template: "<li @click='handleItemClick'>{{content}}</li>",
            methods: {
                handleItemClick() {
                    //子組件向父組件傳值(觸發事件,父組件的@delete="handleItemDelete"在監聽)
                    this.$emit("delete", this.index); //不但觸發delete時間,同時還把this.index作為參數給父組件
                }
            }
        }
        var app = new Vue({
            el: "#root",
            //注冊TodoItem組件
            components: {
                TodoItem: TodoItem //命名叫TodoItem,在實例中也叫TodoItem
            },
            data: {
                list: []
            },
            methods: {
                addTextFunc: function() {
                    this.list.push(this.inputValue)
                    this.inputValue = ""
                },
                handleItemDelete: function(index) { //此處接收傳過來的this.index
                    //全部刪除
                    //this.list = []
                    //刪除點擊的數據(標識為當前數據的index)
                    this.list.splice(index, 1)
                }
            }
        });
    </script>
</body>
</html>

關于“vue組件化的實例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

卓资县| 嘉善县| 南木林县| 惠安县| 永嘉县| 巍山| 炎陵县| 杭锦旗| 平谷区| 治县。| 山阴县| 襄城县| 温宿县| 集贤县| 大悟县| 谢通门县| 临澧县| 定日县| 任丘市| 鹤壁市| 乐业县| 开阳县| 涪陵区| 钟祥市| 泗阳县| 柳州市| 九江市| 莲花县| 历史| 武威市| 文登市| 石狮市| 无为县| 河津市| 根河市| 六盘水市| 永顺县| 南和县| 沈阳市| 綦江县| 吉木萨尔县|