vue 提供了一个内置的
组件,专门用来实现动态组件的渲染。
示例代码如下:
<template>
<div class="app-container">
<h1 ref="myh12">App 根组件h1>
<component :is="comName">component>
<button @click="comName = 'Left'">展示Leftbutton>
<button @click="comName = 'right'">展示Rightbutton>
div>
template>
<script>
import Left from '@/components/Left.vue'
import Right from '@/components/Right.vue'
export default {
data() {
return {
comName: 'Left'
}
},
components: { Left, Right },//必须引入组件,否则找不见位置
}
script>
默认情况下,切换动态组件时无法保持组件的状态。此时可以使用 vue 内置的
组件保持动态组件的状态。示例代码如下:
<keep-alive>
<component :is="comName">component>
keep-alive>
deactivated
生命周期函数。activated
生命周期函数。export default {
name:'Left',
created() {
console.log('组件被创建了')
},
destroyed() {
console.log('组件被销毁了')
},
activated() {
console.log('组件被激活了')
},
deactivated() {
console.log('组件被缓存了')
}
}
include
属性用来指定:只有名称匹配的组件会
被缓存。exclude
属性用来指定:只有名称匹配的组件不会
被缓存。<keep-alive include="Left,Right">
<component :is="comName">component>
keep-alive>
或者
<keep-alive exclude="Left">
<component :is="comName">component>
keep-alive>
实现组件缓存功能在封装组件时,可以通过
元素定义插槽,从而为用户预留内容占位符。示例代码如下:
//父组件
<Left>这是个插槽Left>
//子组件--Left
<div class="left-container">
<slot>slot>
div>
如果在封装组件时没有预留任何
插槽,则用户提供的任何自定义内容都会被丢弃。
//父组件
<Left>没有预留插槽,这段文字会被丢弃Left>
//子组件--Left
<div class="left-container">
div>
封装组件时,可以为预留的
插槽提供后备内容(默认内容)。如果组件的使用者没有为插槽提供任何内容,则后备内容会生效。
//父组件
<Left>Left>
//子组件--Left
<div class="left-container">
<slot>这是插槽默认内容,没有提供具体内容时显示slot>
div>
如果在封装组件时需要预留多个插槽节点,则需要为每个
插槽指定具体的 name
名称。这种带有具体名称的插槽叫做“具名插槽”。
<div class="left-container">
<header>
<slot name="header">slot>
header>
<main>
<slot>slot>
main>
<footer>
<slot name="footer">slot>
footer>
div>
注意:没有指定 name 名称
的插槽,会有隐含的名称叫做 “default
”。
在向具名插槽提供内容的时候,我们可以在一个 元素上使用
v-slot
指令,并以 v-slot
的参数的形式提供其名称。
// left组件
<Left>
<template v-solt:header>
<h1>
滕王阁序
h1>
template>
<template v-solt:default>
<p>默认p>
<p>默认p>
<p>默认p>
template>
<template v-solt:footer>
<p>尾部p>
template>
Left>
跟 v-on 和 v-bind 一样,v-slot 也有缩写,即把参数之前的所有内容 (v-slot:
) 替换为字符 #
。例如 v-slot:header
可以被重写为 #header
// left组件
<Left>
<template #header>
<h1>
滕王阁序
h1>
template>
<template #default>
<p>默认p>
<p>默认p>
<p>默认p>
template>
<template #footer>
<p>尾部p>
template>
Left>
在封装组件的过程中,可以为预留的
插槽绑定 props
数据,这种带有 props
数据的
叫做“作用域插槽
”。
<main>
<slot v-for="item in list" :user="item">slot>
main>
可以使用 v-slot:
的形式,接收作用域插槽对外提供的数据。
<Left>
<template #default="scope">
<p>默认{{ scope.user }}p>
template>
Left>
作用域插槽对外提供的数据对象,可以使用解构赋值简化数据的接收过程。
<Left>
<template #default="{ user }">
<p>默认{{ user }}p>
template>
Left>
vue 官方提供了 v-text、v-for、v-model、v-if
等常用的指令。除此之外 vue 还允许开发者自定义指令。
vue 中的自定义指令分为两类,分别是:
在每个 vue 组件中,可以在 directives
节点下声明私有自定义指令。
directives: {
color: {
bind(el) {
el.style.color = 'red'
}
}
},
在使用自定义指令时,需要加上 v-
前缀。
// 指令的名字是color
<h1 v-color>App 根组件h1>
在 template 结构中使用自定义指令时,可以通过等号(=)
的方式,为当前指令动态绑定参数值:
<h1 ref="myh12" v-color="color">App 根组件h1>
data() {
return {
color: 'red',
}
},
在声明自定义指令时,可以通过形参中的第二个参数,来接收指令的参数值:
directives: {
color: {
bind(el, binding) {
el.style.color = binding.value
}
}
},
bind
函数只调用 1 次:当指令第一次绑定到元素时调用,当 DOM 更新时bind 函数不会被触发。 update
函数会在每次 DOM 更新时被调用。
directives: {
color: {
// 只调用一次
bind(el, binding) {
el.style.color = binding.value
},
// Dom更新时调用
update(el, binding) {
el.style.color = binding.value
}
}
}
如果 insert 和update
函数中的逻辑完全相同,则对象格式的自定义指令可以简写成函数格式
directives: {
color(el, binding) {
el.style.color = binding.value
},
},
全局共享的自定义指令需要通过“Vue.directive()
”进行声明。
Vue.directive('color', function(el, binding) {
el.style.color = binding.value
})