《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点

《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第1张图片

文章目录

  • 3.1传统方式编写和组件化方式编写区别?
  • 3.2概念:模块与组件、模块化与组件化
    • 1)模块
    • 2)组件
    • 3)模块化
    • 4)组件化
  • 3.3非单文件组件
    • 3.3.1使用Vue.extend({})方式创建组件(了解,实际不常用)
      • 举例:
    • 3.3.2组件嵌套
      • 举例:练习组件嵌套
    • 3.3.3VueComponent构造函数
    • 3.3.4一个重要的内置关系
  • 3.4单文件组件
  • 3.5定义组件
    • 3.5.1 全局注册
    • 3.5.2 局部注册
  • 3.6 使用组件
  • 3.7 is 属性
  • 3.8模板
    • 3.8.1直接字符串
    • 3.8.2 x-template模板
    • 3.8.3 template标签
    • 3.8.4 省略is
  • 3.9data属性
    • 综合例子:
  • 3.10props属性
    • 举例:父组件给子组件传递属性msg和greetText,子组件用属性a和b接收,并打印输出
  • 3.11props校验
    • 举例
  • 3.12非props属性
    • 举例:定义子组件设置class和style,而标签引用子组件时也设置了class和style,那么会进行属性合并,如果重名采用就近原则。
  • 3.13自定义事件
    • 3.13.1自定义事件绑定到子组件
      • 举例1:模拟只传递一个参数
      • 举例2:模拟传递多个参数
    • 3.13.2自定义事件挂载到父组件
    • 3.13.3自定义事件-解绑
    • 3.13.4使用自定义事件的容易出错的点
      • 案例1:有3个组件,父组件App.vue,2个子组件Student.vue和School.vue,想实现点击子组件按钮把学生名传递给App,并在父组件App上显示出来
      • 容易出错点1:
      • 容易出错点2:
  • 3.14插槽分发
    • 3.14.1slot插槽
      • 举例
    • 3.14.2具名插槽
      • 举例
    • 3.14.3作用域插槽slot-scope
    • 3.14.4slot-scope版本更新
  • 3.15.动态组件
    • 3.15.1使用方式
      • 举例:点击a标签下方切换不同组件
    • 3.15.2keep-alive
  • 3.16 refs属性
    • 举例:使用自定义组件,默认打印count值为0,通过配置app.$refs.btn1.count = 1,父组件就可以达到获取ref标识的自定义组件并修改count值的目的。
  • 3.17.生命周期
    • 3.17.1生命周期介绍
    • 3.17.2生命周期钩子
    • 3.17.3生命周期整体流程图
      • 举例:代码说明
  • 3.18混入
  • 3.19插件
  • 3.20 标签属性scoped用于控制样式
  • 3.21浏览器本地缓存
    • 3.21.1localStorage
      • 举例:写一个简单的针对本地存储增删改查的案例
    • 3.21.2sessionStorage方法同localStorage一样
  • 3.22全局事件总线(GlobalEventBus)
    • 案例:平行组件通信,把学生组件名称发给学校组件中,并打印出来
  • 3.23消息订阅与发布
    • 3.23.1知识点总结
    • 3.23.2案例
  • 3.24 nextTick语法
  • 3.25Vue封装的过度与动画
    • 3.25.1知识点总结
    • 3.25.2案例
  • 3.26.vm调用待$命令介绍
    • 1)vm.$set(target, property/index, value)
    • 2)vm.$watch(property, {config})
    • 3)vm.$emit(事件名, 传入参数)
    • 4)vm.$on(event, callback)
    • 5)vm.$mount("app")
    • 6)vm.$destroy()
  • 本人其他相关文章链接

3.1传统方式编写和组件化方式编写区别?

传统方式编写

《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第2张图片

组件化方式编写

《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第3张图片

3.2概念:模块与组件、模块化与组件化

1)模块

《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第4张图片

2)组件

《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第5张图片

3)模块化

在这里插入图片描述

4)组件化

在这里插入图片描述

3.3非单文件组件

问题:“单文件组件”与“非单文件组件”区别?

《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第6张图片
《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第7张图片

3.3.1使用Vue.extend({})方式创建组件(了解,实际不常用)

Vue.extend({})属于vue的全局API,在实际业务开发中很少使用,因为相比较vue.component来说,使用Vue.extend({})更加繁琐,但在一些独立组件开发场景中,Vue.extend+$mount是个不错的选择。
《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第8张图片
注意点1:Vue.extend的配置参数中不可以使用el绑定挂在id,跟创建vm实例不同

注意点2:组件使用方式3步:

  • 第一步:创建组件
  • 第二步:注册主键
  • 第三步:使用组件

注意点3:注册局部组件可以写简写方式

普通方式:K,V形式,其中前面的K才是主键真实名字,后面V名字不起效果,当然为了方便辨认,创建的名字K,V尽量保持一致即可

components:{
	'hello': 'hello': 
	}

简写方式:只保留K即可,省略V

components:{
	'hello' 
	}

注意点4:组件名由一个单词组成小写hello,实际在Vue开发者工具中会首字母大写Hello,组件名由多个单词组成,实际在Vue开发者工具中会多个单词首字母都大写,当然只是个展示样式而已。

注意点5:定义组件简写形式const school = Vue.extend(options) 可简写为:const school = options,说明定义组件时未绑定Vue.extend,那么vue会默认包裹一层Vue.extend,如果定义组件绑定了Vue.extend,那么vue就会跳过包裹步骤。
《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第9张图片

举例:

<div id="root">
<!-- 第三步:使用组件标签 -->			
    <hello></hello>
	<hr>
	<h1>{{msg}}</h1>			
</div>

<script type="text/javascript">
//第一步:创建hello组件
const hello = Vue.extend({
	template:`
		<div>	
			<h2>你好啊!{{name}}</h2>
		</div>
	`,
	data(){
		return {
			name:'Tom'
		}
	}
})

//第二步:全局注册组件
Vue.component('hello',hello)

//创建vm
new Vue({
	el:'#root',
	data:{
		msg:'你好啊!'
	},
	//第二步:注册组件(局部注册)
	components:{
		'hello'
	}
})

3.3.2组件嵌套

举例:练习组件嵌套

《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第10张图片
《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第11张图片

div id="root">
</div>

<script type="text/javascript">
    Vue.config.productionTip = false //阻止 vue 在启动时生成生产提示。

    //定义student组件
    const student = Vue.extend({
        name:'student',
        template:`
				<div>
					<h2>学生姓名:{{name}}</h2>
					<h2>学生年龄:{{age}}</h2>
				</div>
			`,
        data(){
            return {
                name:'尚硅谷',
                age:18
            }
        }
    })

    //定义school组件
    const school = Vue.extend({
        name:'school',
        template:`
				<div>
					<h2>学校名称:{{name}}</h2>
					<h2>学校地址:{{address}}</h2>
					<student></student>
				</div>
			`,
        data(){
            return {
                name:'尚硅谷',
                address:'北京'
            }
        },
        //注册组件(局部)
        components:{
            student
        }
    })

    //定义hello组件
    const hello = Vue.extend({
        template:`<h1>{{msg}}</h1>`,
        data(){
            return {
                msg:'欢迎来到尚硅谷学习!'
            }
        }
    })

    //定义app组件
    const app = Vue.extend({
        template:`
				<div>
					<hello></hello>
					<school></school>
				</div>
			`,
        components:{
            school,
            hello
        }
    })

    //创建vm
    new Vue({
        template:'<app></app>',
        el:'#root',
        //注册组件(局部)
        components:{app}
    })
</script>

3.3.3VueComponent构造函数

注意点1:vm管理一堆的vc

注意点2:

问题:vc和vm区别? vc≠vm

答案:
相同点:属性和方法99%相同
不同点:
1)vm可以绑定el决定为哪个容器服务,而vc不可以,vc只能被vm管理
2)vm的data可定义对象形式,可定义函数形式,而vc中data只能定义函数形式
《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第12张图片
注意点3:“组件实例对象” =》 简称vc

问题:“组件实例对象”是啥呢?

答案:就是小型的vm

<body>
<div id="root">
			<school></school>
			<hello></hello>
		</div>
</body>

<script type="text/javascript">
		Vue.config.productionTip = false
		
		//定义school组件
		const school = Vue.extend({
			name:'school',
			template:`
				<div>
					<h2>学校名称:{{name}}</h2>	
					<h2>学校地址:{{address}}</h2>	
					<button @click="showName">点我提示学校名</button>
				</div>
			`,
			data(){
				return {
					name:'尚硅谷',
					address:'北京'
				}
			},
			methods: {
				showName(){
					console.log('showName',this)
				}
			},
		})

		const test = Vue.extend({
			template:`<span>atguigu</span>`
		})

		//定义hello组件
		const hello = Vue.extend({
			template:`
				<div>
					<h2>{{msg}}</h2>
					<test></test>	
				</div>
			`,
			data(){
				return {
					msg:'你好啊!'
				}
			},
			components:{test}
		})


		// console.log('@',school)
		// console.log('#',hello)

		//创建vm
		const vm = new Vue({
			el:'#root',
			components:{school,hello}
		})
</script>

3.3.4一个重要的内置关系

注意点1:

Demo.prototype  =》 指代Demo函数上面的“显示原型属性”
d.__proto__  => 指代实例d上面的“隐式原型属性”
无论是“Demo函数上面的显示原型属性”还是“实例d上面的隐式原型属性”都指向同一个对象,它叫“原型对象”

《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第13张图片
注意点2(重要):

一个重要的内置关系:VueComponent.prototype.__proto__ === Vue.prototype

注意点3(重要):一句话:实例的隐式原型属性永远指向自己缔造者的原型对象
在这里插入图片描述
注意点4:下面图将展示注意点2的关系,即“让组件实例对象(vc)可以访问到 Vue原型上的属性、方法”。
《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第14张图片

3.4单文件组件

《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第15张图片

3.5定义组件

Vue 自定义组件分为两种:全局注册和局部注册,全局组件可以在任何地方引用,局部
组件只能在当前 Vue 实例使用。

3.5.1 全局注册

组件
   组件 (Component)Vue.js 最强大的功能之一。组件可以扩展 HTML 元素,封装可重用的代码。
        1、定义组件
            Vue自定义组件分为两种:全局注册和局部注册,全局组件可以在任何地方引用,局部组件只能在当前Vue实例使用。
            1)全局注册
                使用Vue.component(tagName, options)来定义:
                 Vue.component('hello',{
                    template:"

enjoy your life!

"
}) 2)局部注册 在Vue实例中使用components属性来定义: new Vue({ el:"#app", components:{ "inner-hello":{ template:"

我是局部组件

"
} } });

注意点1:HTML 特性是不区分大小写的,所有在定义组件时尽量使用中划线“-”来指定组件名。
即使,使用了驼峰标示命名如:myComponent,在页面引用时仍然要使用进行引用。

使用 Vue.component(tagName, options)来定义:

<body>
    <div id="root">
        <!--使用组件-->
        <hello></hello> <!--必须放在是实例化组件中才能生效,普通div无效-->
        <hello></hello>
    </div>
    <div id="app">
        <hello></hello>
        <inner-hello></inner-hello>
    </div>
</body>
<script type="text/javascript">
    /*定义全局组件*/
    Vue.component('hello',{
        template:"

enjoy your life!

"
}) new Vue({ el:"#app", components:{ "inner-hello":{ template:"

我是局部组件

"
} } }); new Vue({ el:"#root", data:{ } }) </script>

3.5.2 局部注册

在 Vue 实例中使用 components 属性来定义:

3.6 使用组件

《进阶篇第3章:vue进阶-组件》包含组件、自定义事件、插槽、路由等等扩展知识点_第16张图片

3.7 is 属性

问题:为什么在table标签中直接使用自定义组件,无法正常显示?

原因:

DOM解析时会解析到<table>标签的外部,table/ol/ul/select 这种html标签有特殊的结构要求,不能直接使用自定义标签。他们有自己的默认嵌套规则,比如:
                table> tr> [th, td];
                ol/ul > li;
                select > option
<body>   
    <div id="app">
       <table>
           <tr is="hello"></tr><!--在tr中+is,相当于在tr中加入一个全局组件,而且认同它-->
       </table>
    </div>
</body>
<script type="text/javascript">
    /*定义全局组件*/
    Vue.component('hello',{
        template:"

你愁啥!

"
}) new Vue({ el:"#app", data:{ } }) </script>

3.8模板

当模板的 html 结构比较复杂时,直接在 template 属性中定义就不现实了,效率也会很低,此时我们可以使用模板,定义模板的四种形式:
在这里插入图片描述

问题:什么叫在使用字符串模板、x-template模板和.Vue组件时,不需要is进行转义?

答案:不需要转义如图1,需要转义如图2(详情请看知识点导航3.4.4)

<script type="text/x-template" id="template5">
    <table>
        <my-component1></my-component1>
    </table>
</script>
Vue.component('my-component2',{
    template:'#template2'
});
图1
<table>
       <tr is="my-component3">      
 </table>
<template id="template3">
    <ol>
        <li>a</li>
        <li>b</li>
    </ol>
</template>
Vue.component('my-component3',{
    template:'#template3'
});
图2

3.8.1直接字符串

var temp = '<h4>直接字符串</h4>';
Vue.component('my-component1',{
    template:temp
});

3.8.2 x-template模板

<!-- 使用x-template -->
<script type="text/x-template" id="template2">
    <ul>
        <li>01</li>
        <li>02</li>
    </ul>
</script>
Vue.component('my-component2',{
    template:'#template2'
});

3.8.3 template标签

<!-- 使用template标签 -->
<template id="template3">
    <ol>
        <li>a</li>
        <li>b</li>
    </ol>
</template>
Vue.component('my-component3',{
    template:'#template3'
});

3.8.4 省略is

<!-- 使用x-template -->
<script type="text/x-template" id="template5">
    <table>
        <my-component1></my-component1>
    </table>
</script>
Vue.component('my-component6',{
    template:'#template5'
});

正常