vue.js组件学习记录

vue.js

组件可以扩展HTML元素,封装可重用的HTML代码,我们可以将组件看作自定义的HTML元素。

基本步骤

Vue.js的组件的使用有3个步骤:创建组件构造器、注册组件和使用组件。
这里写图片描述

Demo演示

<!DOCTYPE html>
<html>
    <body>
        <div id="app">
            <!-- 3. #app是Vue实例挂载的元素,应该在挂载元素范围内使用组件-->
            <my-component></my-component>
        </div>
    </body>
    <!--引入vue.js-->
    <script src="js/vue.js"></script>
    <script>

        // 1.创建一个组件构造器
        var myComponent = Vue.extend({
            template: '<div>This is my first component!</div>'
        })

        // 2.注册组件,并指定组件的标签,组件的HTML标签为<my-component>
        Vue.component('my-component', myComponent)
     //3. #app是Vue实例挂载的元素,应该在挂载元素范围内使用组件
        new Vue({
            el: '#app'    
        });

    </script>
</html>

运行结果如下:

这里写图片描述

理解组件的创建和注册

  1. Vue.extend()是Vue构造器的扩展,调用Vue.extend()创建的是一个组件构造器。
  2. Vue.extend()构造器有一个选项对象,选项对象的template属性用于定义组件要渲染的HTML。
  3. 使用Vue.component()注册组件时,需要提供2个参数,第1个参数时组件的标签,第2个参数是组件构造器。
  4. 组件应该挂载到某个Vue实例下,否则它不会生效。

全局注册和局部注册

调用Vue.component()注册组件时,组件的注册是全局的,这意味着该组件可以在任意Vue示例下使用。
如果不需要全局注册,或者是让组件使用在其它组件内,可以用选项对象的components属性实现局部注册。

父组件和子组件

我们可以在组件中定义并使用其他组件,这就构成了父子组件的关系。

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title></title>
</head>
    <body>
        <div id="app">
            <parent-component>
            </parent-component>
        </div>
    </body>
    <script src="js/vue.js"></script>
    <script>

        var Child = Vue.extend({
            template: '<p>This is a child component!</p>'
        })

        var Parent = Vue.extend({
            // 在Parent组件内使用<child-component>标签
            template :'<div><p>This is a Parent component</p><child-component></child-component></div>',
            //需要使用标签将父子组件包裹,如使用<div></div>包裹
            components: {
                // 局部注册Child组件,该组件只能在Parent组件内使用
                'child-component': Child
            }
        })

        // 全局注册Parent组件
        Vue.component('parent-component', Parent)

        new Vue({
            el: '#app'
        })

    </script>
</html>

这段代码的运行结果如下:

这里写图片描述
我们分几个步骤来理解这段代码:

  1. var Child = Vue.extend(…)定义一了个Child组件构造器
  2. var Parent = Vue.extend(…)定义一个Parent组件构造器
  3. components: { ‘child-component’: Child },将Child组件注册到Parent组件,并将Child组件的标签设置为child-component。
  4. template :'<div><p>This is a Parent component</p><child-component></child-component></div>',在Parent组件内以标签的形式使用Child组件。
  5. Vue.component(‘parent-component’, Parent) 全局注册Parent组件 在页面中使用标签渲染Parent组件的内容,同时Child组件的内容也被渲染出来。

    这里写图片描述

Child组件是在Parent组件中注册的,它只能在Parent组件中使用,确切地说:子组件只能在父组件的template中使用。

组件注册简化

以上组件注册的方式有些繁琐,Vue.js为了简化这个过程,提供了注册语法糖。

使用Vue.component()直接创建和注册组件:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title></title>
</head>
    <body>
        <div id="app">
            <my-component>
            </my-component>
        </div>
    </body>
    <script src="js/vue.js"></script>
    <script>
    // 全局注册,my-component是标签名称
    Vue.component('my-component',{
        template: '<div>This is the first component!</div>'
    })

    var vm1 = new Vue({
        el: '#app'
    })
    </script>
</html>

Vue.component()的第1个参数是标签名称,第2个参数是一个选项对象,使用选项对象的template属性定义组件模板。使用这种方式,Vue在背后会自动地调用Vue.extend()。

在选项对象的components属性中实现局部注册:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <div id="app1">
            <my-component1></my-component1>
        </div>
        ---------------app1和ap2的分割线---------------
        <div id="app2">
            <my-component1></my-component1>
            <my-component2></my-component2>
            <my-component3></my-component3>
        </div>
    </body>
    <script src="js/vue.js"></script>
    <script>

        // 全局注册,my-component1是标签名称
        Vue.component('my-component1',{
            template: '<div>This is the first component!</div>'
        })

        var vm1 = new Vue({
            el: '#app1'
        })

        var vm2 = new Vue({
            el: '#app2',
            components: {
                // 局部注册,my-component2是标签名称
                'my-component2': {
                    template: '<div>This is the second component!</div>'
                },
                // 局部注册,my-component3是标签名称
                'my-component3': {
                    template: '<div>This is the third component!</div>'
                }
            }
        })

    </script>
</html>

使用script或template标签

尽管语法糖简化了组件注册,但在template选项中拼接HTML元素比较麻烦,这也导致了HTML和JavaScript的高耦合性。
庆幸的是,Vue.js提供了两种方式将定义在JavaScript中的HTML模板分离出来。

使用<template>标签

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <div id="app">
            <my-component></my-component>
        </div>

        <template id="myComponent">
            <div>This is a component!</div>
        </template>
    </body>
    <script src="js/vue.js"></script>
    <script>

        Vue.component('my-component',{
            template: '#myComponent'
        })

        new Vue({
            el: '#app'
        })

    </script>
</html>

在理解了组件的创建和注册过程后,我建议使用<script><template>标签来定义组件的HTML模板。
这使得HTML代码和JavaScript代码是分离的,便于阅读和维护。
另外,在Vue.js中,可创建.vue后缀的文件,在.vue文件中定义组件。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值