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

溫馨提示×

溫馨提示×

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

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

Vue生命周期中的組件化是什么

發布時間:2022-03-10 11:16:28 來源:億速云 閱讀:166 作者:小新 欄目:開發技術

這篇文章主要介紹了Vue生命周期中的組件化是什么,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

    引出生命周期

    Vue生命周期中的組件化是什么

    此時調用change,定時器回調修改opacity,數據修改,模板重新解析,再次調用change。

    Vue生命周期中的組件化是什么

    銷毀流程

    解綁(自定義)事件監聽器

    Vue生命周期中的組件化是什么

    生命周期

    Vue生命周期中的組件化是什么

    生命周期總結

    Vue生命周期中的組件化是什么

     <div id="root">
            <!-- <h3 :>hello,{{name}}</h3> -->
            <h3 :>hello,{{name}}</h3>
            <button @click="stop">click stop</button>
            <button @click="opacity = 1">opacity 1</button>
        </div>
        <script type="text/javascript">
            Vue.config.productionTip = false;
            new Vue({
                el: "#root",
                data: {
                    name: "atguigu",
                    opacity: 1,
                },
                methods: {
                    stop(){
                        this.$destroy();
                    }
                },
                beforeDestroy() {
                    clearInterval(this.timer);
                },
                //vue完成模板解析,并把初始的真實的dom元素放入頁面后(掛載完畢),會調用該函數。
                mounted() {
                    this.timer = setInterval(() => {
                        this.opacity -= 0.01;
                        if (this.opacity <= 0) { this.opacity = 1 }
                    }, 16);
                },
            });
        </script>

    組件化 

    template:

    整個root容器當作模板

    Vue生命周期中的組件化是什么

    Vue生命周期中的組件化是什么

    Vue生命周期中的組件化是什么

    會直接替換掉root,把template當作模板進行解析。 

    Vue生命周期中的組件化是什么

    Vue生命周期中的組件化是什么

    Vue生命周期中的組件化是什么

    Vue生命周期中的組件化是什么

    Vue生命周期中的組件化是什么

    Vue生命周期中的組件化是什么

     非單文件組件

    data需要用函數式寫法

    Vue生命周期中的組件化是什么

    Vue生命周期中的組件化是什么

    Vue生命周期中的組件化是什么

    <div id="root">
            <h3>{{msg}}</h3>
           <!--組件標簽-->
           <school>
           </school>
           <hr>
           <student>       
           </student>
           <student>   
           </student>
           <hello>
           </hello>
        </div>
        <div id="root2">
        </div>
        <script type="text/javascript">
            Vue.config.productionTip = false;
            //創建school組件
           const school = Vue.extend({
                template:`
                <div>
                    <h3>schoolname:{{schoolname}}</h3>
                     <h3>schoolage{{schoolage}}</h3>
                     <button @click='show'>點擊提示</button>
                </div>
                `,
                data(){
                    return{
                        schoolname: "atguigu",
                        schoolage:20,
                    }
                },
                methods: {
                    show(){
                        alert(this.schoolname);
                    }
                },
           });
           //創建stu組件
           const student = Vue.extend({
            template:`
                <div>
                    <h3>stuname:{{stuname}}</h3>
                    <h3>stuage{{stuage}}</h3>
                </div>
                `,
                data(){
                    return{
                        stuname:'tom',
                        stuage:18,
                    }
                },
           });
           //創建hello組件
           const hello = Vue.extend({
                template:`
                <div>
                    <h3>stuname:{{stuname}}</h3>
                    <h3>stuage{{stuage}}</h3>
                </div>
                `,
                data(){
                    return{
                        stuname:'tom',
                        stuage:18,
                    }
                },
           });
           //全局注冊組件
           Vue.component('hello',hello);
            new Vue({
                el: "#root",
                data:{
                    msg:'this is msg'
                },
                //局部注冊組件
                components:{
                    school:school,
                    student,
                }
            });
        </script>

     組件的幾個注意點 

    Vue生命周期中的組件化是什么

     組件的嵌套 

    Vue生命周期中的組件化是什么

    Vue生命周期中的組件化是什么

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <script type="text/javascript" src="../js/vue.js"></script>
        <title>Document</title>
    </head>
    <body>
        <div id="root">
        </div>
        <script type="text/javascript">
            Vue.config.productionTip = false;
            //創建student組件
            const student = Vue.extend({
                template:`
                <div>
                    <h3>stuname:{{stuname}}</h3>
                    <h3>stuage{{stuage}}</h3>
                </div>
                `,
                data(){
                    return{
                        stuname:'tom',
                        stuage:18,
                    }
                },
           });
            //創建school組件
           const school = Vue.extend({
                template:`
                <div>
                    <h3>schoolname:{{schoolname}}</h3>
                     <h3>schoolage{{schoolage}}</h3>
                     <button @click='show'>點擊提示</button>
                     <student></student>
                </div>
                `,
                data(){
                    return{
                        schoolname: "atguigu",
                        schoolage:20,
                    }
                },
                methods: {
                    show(){
                        alert(this.schoolname);
                    }
                }, 
                components:{
                    student:student,               
                }  
           });
           //創建hello組件
           const hello = Vue.extend({
                template:`
                <div>
                    <h3>{{msg}}</h3>
                </div>
                `,
                data(){
                    return{
                        msg:'hello!'
                    }
                },
           });
           const app = Vue.extend({
               template:`
                    <div>
                        <hello></hello>
                        <school></school>
                    </div>
               `,
               components:{
                    school,
                    hello,              
                } 
           })
           //vue
            new Vue({
                template:'<app></app>',
                el: "#root",
                //局部注冊組件
                components:{
                    app,             
                }         
            });
        </script>
    </body>
    </html>

     VueComponent

    每次調用extend,都返回了一個VueComponent

    Vue生命周期中的組件化是什么

    Vue生命周期中的組件化是什么

    Vue生命周期中的組件化是什么

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <script type="text/javascript" src="../js/vue.js"></script>
        <title>Document</title>
    </head>
    <body>
        <div id="root">
            <!--組件標簽-->
            <school>
            </school>
            <hello>
            </hello>
        </div>
        <div id="root2">
        </div>
        <script type="text/javascript">
            Vue.config.productionTip = false;
            //創建school組件
            const school = Vue.extend({
                template: `
                <div>
                    <h3>schoolname:{{schoolname}}</h3>
                     <h3>schoolage{{schoolage}}</h3>
                     <button @click='show'>點擊提示</button>
                </div>
                `,
                data() {
                    return {
                        schoolname: "atguigu",
                        schoolage: 20,
                    }
                },
                methods: {
                    show() {
                        console.log(this)//VueComponent實例對象  vc
                        alert(this.schoolname);
                    }
                },
            });
            //創建hello組件
            const hello = Vue.extend({
                template: `
                <div>
                    <h3>hello:{{hello}}</h3>
                </div>
                `,
                data() {
                    return {
                        hello: "hello",
                    }
                },
            });
            console.log(school);//一個構造函數
            console.log(hello);//一個構造函數
            console.log(school === hello);//false
            new Vue({
                el: "#root",
                data: {
                },
                //局部注冊組件
                components: {
                    school: school,
                    hello:hello,
                }
            });
        </script>
    </body>
    </html>

     Vue實例與組件實例

    Vue生命周期中的組件化是什么

    Vue生命周期中的組件化是什么

    感謝你能夠認真閱讀完這篇文章,希望小編分享的“Vue生命周期中的組件化是什么”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

    向AI問一下細節

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

    vue
    AI

    海阳市| 松阳县| 连平县| 镶黄旗| 霍山县| 湾仔区| 金沙县| 华宁县| 邓州市| 商洛市| 逊克县| 西和县| 衡水市| 灵璧县| 桑植县| 沾益县| 精河县| 黄骅市| 枣强县| 望都县| 鄂伦春自治旗| 太谷县| 汝州市| 四会市| 婺源县| 卫辉市| 河曲县| 承德县| 民勤县| 信阳市| 阿巴嘎旗| 灵寿县| 汕头市| 望奎县| 岳普湖县| 邵东县| 黔南| 三门县| 湘阴县| 永昌县| 商水县|