记录学习成果,以便温故而知新
“VUE3照本宣科”是指照着中文官网和菜鸟教程这两个“本”来学习一下VUE3。以前也学过VUE2,当时只再gitee留下一些代码,却没有记录学习的心得体会,有时也免不了会追忆一下。
以后出现“中文官网”不做特殊说明就是指:https://cn.vuejs.org/;菜鸟教程就是指:https://www.runoob.com/vue3/vue3-tutorial.html
之所把内置指令一一罗列,主要是因为几个指令的缩写老是记不住,所以这里加深一下印象,做个备忘。同时也是作为基础知识的一部分。
更新元素的文本内容。
演示代码:
const msg = ref('Hello Tom')
<div>
<span v-text="msg">span>
div>
<div>
<span>{{ msg }}span>
div>
更新元素的 innerHTML。
v-html 的内容直接作为普通 HTML 插入—— Vue 模板语法是不会被解析的。
演示代码:
const html = ref('{{ msg }}
')
<div v-html="html">div>
基于表达式值的真假性,来改变元素的可见性。
演示代码:
const ok = ref(true)
<div v-show="ok">v-showdiv>
<div><button @click="ok=!ok">{{ ok ? '隐藏' : '显示' }}button>div>
运行效果:
如果单击“隐藏”按钮,则隐藏v-show指令所在的div,如图:
v-show指令只是隐藏div,并不删除div,这点与v-if不一样。下图能够说明v-show指令所在的div被设置了style=“display: none;”
基于表达式值的真假性,来条件性地渲染元素或者模板片段。
当同时使用时,v-if 比 v-for 优先级更高。我们并不推荐在一元素上同时使用这两个指令
表示 v-if 或 v-if / v-else-if 链式调用的“else 块”。
表示 v-if 的“else if 块”。可以进行链式调用。
v-if 、v-else 与v-else-if 演示代码:
<div v-if="Math.random() > 0.5">
Now you see me
div>
<div v-else>
Now you don't
div>
<div v-if="type === 'A'">
A
div>
<div v-else-if="type === 'B'">
B
div>
<div v-else-if="type === 'C'">
C
div>
<div v-else>
Not A/B/C
div>
基于原始数据多次渲染元素或模板块。
期望的绑定值类型:Array | Object | number | string | Iterable
演示代码:
const items = reactive([1, 2, 3, 4, 5])
const user = ref({
'name': 'Tom',
'age': 16
})
<div v-for="(item, index) in items" :key="index">{{ index }} - {{ item }}div>
<div v-for="(value, key) in user" :key="key">{{ key }} - {{ value }}div>
<div v-for="(value, name, index) in user" :key="index">{{ index }} - {{ name }} - {{ value }}div>
运行效果:
这里由于eslint的原因,以上代码的没有报错,还有其它的写法,但是报错了,所以就没有展示。
给元素绑定事件监听器。
缩写:@
参数:event (使用对象语法则为可选项)
修饰符
- .stop - 调用 event.stopPropagation()。
- .prevent - 调用 event.preventDefault()。
- .capture - 在捕获模式添加事件监听器。
- .self - 只有事件从元素本身发出才触发处理函数。
- .{keyAlias} - 只在某些按键下触发处理函数。
- .once - 最多触发一次处理函数。
- .left - 只在鼠标左键事件触发处理函数。
- .right - 只在鼠标右键事件触发处理函数。
- .middle - 只在鼠标中键事件触发处理函数。
- .passive - 通过 { passive: true } 附加一个 DOM 事件。
演示代码:
const doThis = (e) => console.log(e)
const doThat = (e) => console.log(e)
const onEnter = (e) => console.log(e)
const event = ref('click')
<div><button v-on:click="doThis">v-on:clickbutton>div>
<div><button v-on:[event]="doThis">v-on:[event]button>div>
<div><button v-on:click="doThat('hello', $event)">v-on:clickbutton>div>
<div><button @click="doThis">@clickbutton>div>
<div><button @[event]="doThis">@[event]button>div>
<div><button @click.stop="doThis">@click.stopbutton>div>
<div><button @click.prevent="doThis">@click.preventbutton>div>
<div><form @submit.prevent>@submit.preventform>div>
<div><button @click.stop.prevent="doThis">@click.stop.preventbutton>div>
<div><input @keyup.enter="onEnter" />div>
<div><button v-on:click.once="doThis">v-on:click.oncebutton>div>
<div><button v-on="{ mousedown: doThis, mouseup: doThat }">v-on=button>div>
运行效果:
挨个点击按钮或者输入框里输入回车,终端输出如图:
除了form没有效果以外,其它都有输出。
动态的绑定一个或多个 attribute,也可以是组件的 prop。
缩写:: 或者 . (当使用 .prop 修饰符)
修饰符
- .camel - 将短横线命名的 attribute 转变为驼峰式命名。
- .prop - 强制绑定为 DOM property。
- .attr - 强制绑定为 DOM attribute。
演示代码:
const imageSrc = ref('../../public/nutcracker.jpg')
const fileName = ref('nutcracker.jpg')
const key = ref('style')
const value = ref('color:blue;text-align:center')
const isRed = ref(true)
const classA = ref('classA')
const classB = ref('classB')
// eslint-disable-next-line no-unused-vars
const classC = ref('classC')
const isB = ref(true)
const isC = ref(true)
const size = ref(20)
const styleObjectA = reactive({ color: 'red' })
const styleObjectB = reactive({ fontSize: '20px' })
const someProp = ref('someProp')
<div>
<img v-bind:src="imageSrc" style="width:100px;height:100px;" />
div>
<div>
<button v-bind:[key]="value">v-bind:[key]="value"button>
div>
<div>
<img :src="imageSrc" style="width:100px;height:100px;"/>
div>
<div>
<button :[key]="value">:[key]="value"button>
div>
<div>
<img :src="'../../public/' + fileName" style="width:100px;height:100px;" />
div>
<div :class="{ red:isRed }">:class="{ red:isRed }"div>
<div :class="[classA, classB]">:class="[classA, classB]"div>
<div :class="[classA, { classB:isB, classC:isC }]">:class="[classA, { classB: isB, classC: isC }]"div>
<div :style="{ fontSize: size + 'px' }">:style="{ fontSize: size + 'px' }"div>
<div :style="[styleObjectA, styleObjectB]">:style="[styleObjectA, styleObjectB]"div>
<div v-bind="{ id: someProp, 'style': styleObjectB }">v-bind="{ id: someProp, 'style': styleObjectB }"div>
.red {
color: red;
}
.classA {
color: yellow;
}
.classB {
font-size: 20px;
}
.classC {
text-decoration: underline;
}
在表单输入元素或组件上创建双向绑定。
演示代码:
const color = ref('红')
const colors = ref([])
<div><input type="text" v-model="color" />div>
<div>
<input type="radio" id="red1" v-model="color" value="红"/><label for="red1">红label>
<input type="radio" id="yellow1" v-model="color" value="黄"/><label for="yellow1">黄label>
<input type="radio" id="blue1" v-model="color" value="蓝"/><label for="blue1">蓝label>
div>
<div>
<select v-model="color">
<option value="红">红option>
<option value="黄">黄option>
<option value="蓝">蓝option>
select>
div>
<br>
<div><textarea v-model="colors">textarea>div>
<div>
<input type="checkbox" id="red2" v-model="colors" value="红"/><label for="red2">红label>
<input type="checkbox" id="yellow2" v-model="colors" value="黄"/><label for="yellow2">黄label>
<input type="checkbox" id="blue2" v-model="colors" value="蓝"/><label for="blue2">蓝label>
div>
运行效果:
代码实现了文本框、单选按钮、下拉框、文本域与复选框的双向绑定。
用于声明具名插槽或是期望接收 props 的作用域插槽。
缩写:#
这个指令在后面介绍。
跳过该元素及其所有子元素的编译。
演示代码:
<span v-pre>{{ this will not be compiled }}span>
仅渲染元素和组件一次,并跳过之后的更新。
演示代码:
const onceMsg = ref('Hello Jerry')
<div><span v-once>This will never change: {{ onceMsg }}span>div>
<div><span>This will change: {{ onceMsg }}span>div>
<div><input v-model="onceMsg" />div>
运行效果:
加了v-once指令的div果然只渲染了一次,修改文本框并没有更新。
缓存一个模板的子树。在元素和组件上都可以使用。
中文文档中说:
v-memo 仅用于性能至上场景中的微小优化,应该很少需要。
所以就不介绍了。
用于隐藏尚未完成编译的 DOM 模板。
该指令只在没有构建步骤的环境下需要使用。
演示代码:
<div v-cloak>
{{ message }}
div>
这个代码只在特定场景或特定情况下才能看到效果。
本地的自定义指令在