vue組件 非單文件組件的使用步驟

一,什麼是組件

實現應用中局部功能代和資源的集合(簡單來說就是將html,js,css,資源整合起來的一個小盒子)

理解:用來實現局部(特定)功能效果的代碼集合

為什麼:一個界面的功能很復雜

作用:復用編碼,簡化項目編碼,提高運行效率

組件又分為非單文件組件和單文件組件,一般常用的就是單文件組件

二,非單文件組件

2.1使用組件的三大步驟

1.創建組件

(1)如何定義一個組件?

使用Vue.extend(options )創建,其中options和new Vue(options)時傳 入的那個options兒乎一樣。但是也略有不同,組件內不需要寫el該屬性,因為組件是直接服務於Vue實例的,所以並不需要在組件內寫,並且組件寫完之後不隻是服務於一個地方,這裡就體現瞭組件的復用性,所以組件不能寫el。

2.註冊組件

(2)如何註冊組件?

1.局部註冊:靠new Vue的時候傳入components選項

2.全局註冊:靠Vue.component( '組件名,組件)

3.使用組件

(3)如何使用組件

編寫組件標簽(使用組件)

下面是創建非單文件組件的全過程

(4)為什麼data必須寫成函數?

避免組件被復用時,數據存在引用關系。

註:使用template 可以配置組件結構。

<body>
    <div id="user">
        <!-- 第3步使用組件編寫組件標簽 -->
        <school></school>
        <br>
        <xuesheng></xuesheng>
    </div>
    <div class="user2">
        <hello></hello>
    </div>
</body>
<script>
    // 第一步:創建組件
    // 創建school組件
    const school = Vue.extend({
        template: `
        <div>
        <h2>學校名稱:{{schoolName}}</h2>
        <h2>地址:{{address}}</h2>
        </div>
        `,
        // 組件裡不用寫el也不能寫el,而且組件裡必須寫函數式
        data() {
            return {
                schoolName: '山魚屋',
                address: 'Nanbian'
            }
        }
    })
    // 創建student組件
    const student = Vue.extend({
        template: `
        <div>
        <h2>學生名稱:{{studentName}}</h2>
        <h2>年齡:{{age}}</h2>
        <button @click = 'showName'>點我出名</button>
        </div>
        `,
        // 組件裡不用寫el也不能寫el,而且組件裡必須寫函數式
        data() {
            return {
                studentName: '山魚屋',
                age: 20
            }
        },
        methods: {
            showName() {
                alert(this.studentName)
            }
        },
    })
    // 創建全局組件
    const hello = Vue.extend({
        template: `
        <div>
        <h2>你好呀!{{name}}</h2>
        </div>
        `,
        data() {
            return {
                name: 'shanyu',
            }
        }
    })
 
    // 註冊全局的組件
    Vue.component('hello', hello);
 
    // 創建vm
    new Vue({
        el: '#user',
        // 第2步.註冊組件
        components: {
            // 鍵值對形式(若鍵值對同名可簡寫)
            school,
            xuesheng: student
        }
    })
 
    new Vue({
        el: '.user2',
    })
</script>

4.關於寫法的註意點

1.關於組件名

一個單詞組成: 第一種寫法( 首字母小寫):+ school,第二種寫法(首字母大寫) School

多個單詞組成: 第一種寫法(kebab-case命 名):my-school,第二種寫法(Came1Case命 名): MySchool (需要Vue腳手架支持)

註:

(1),組件名盡可能回避HTML中已有的元素名稱,例如: h3、 H2都不行。

(2).可以使用name配置項指定組件在開發者工具中呈現的名字。

2.關於組件標簽

第1種寫法: <school></school>

第2種寫法: <school/> 備註:不用使用腳手架時,<schoo1/> 會導致後續組件不能渲染。

3.簡寫方式

const school = Vue.extend(options)可簡寫為: const school = {options}

2.2組件的嵌套

和俄羅斯套娃差不多,大件套小件(其實vm下面還有一個名為app的組件,他管理著所有的組件)

<body>
    <div id="user">
 
    </div>
    <script>
        // 創建room組件
        const room = {
            template:
                `<div>
        <h2>
        房間號{{num}}
        </h2>
        <h2>
        puwei:{{pnum}}
        </h2>
         </div>`,
            data() {
                return {
                    num: '222',
                    pnum: '8'
                }
            }
        }
        // 創建students組件
        const students = {
            template:
                `<div>
        <h2>
        姓名:{{name}}
        </h2>
        <h2>
        學號:{{studentnum}}
        </h2>
        <room></room>
         </div>`,
            data() {
                return {
                    name: '山魚',
                    studentnum: '9657'
                }
            },
            components: {
                room
            }
        }
        // 創建school組件
        const school = {
            template:
                `<div>
        <h2>
        校名:{{sname}}
        </h2>
        <h2>
        地址:{{address}}
        </h2>
        <students></students>
         </div>`,
            data() {
                return {
                    sname: '山魚學院',
                    address: '華山道9088號'
                }
            },
            components: {
                students
            }
        }
        const app = {
            template:
                `
        <school></school>
         </div>`,
            
            components: {
                school
            }
        }
        // 創建app組件
        new Vue({
            template:`<app></app>`,
            el: '#user',
            components: {
                app,
            }
        })
    </script>
</body>

關於VueComponent

  • school組件本質是一個 名為VueComponent的構造函數,且不是程序員定義的,是Vue.extend生成的。
  • 隻需要寫<school/>(自閉合標簽)或<school></school>, Vue解析時會幫我們創建school組件的實例對象,也就是Vue幫我們執行的: new VueComponent(options)。
  • 每次調用Vue.extend,返回的都是一一個全新的VueComponent(雖然雙胞胎特別像但是無論怎麼來說也不是相同的一個人)
  • this指向

(1).組件配置中data函數、methods中的函數、watch中的函數、computed中的兩數它們的this均 是[VueComponent實例對象]。

(2) new Vue(options )配置中data函數、methods中的函數、watch中的函數、computed中 的函數 它們的this均是[Vue實例對象]。

到此這篇關於vue組件 非單文件組件的使用步驟的文章就介紹到這瞭,更多相關vue非單文件組件內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: