在 Vue.js 中,指令(Directive)是用于擴展 HTML 元素的行為的特殊屬性。以下是 Vue.js 中最常用的 6 個指令和渲染器的用法:
1.v-model:雙向數(shù)據(jù)綁定,將表單元素的值與數(shù)據(jù)模型綁定,實現(xiàn)數(shù)據(jù)的雙向綁定。例如:
<template>
<div>
<input v-model="message" type="text">
<p>{{ message }}</p>
</div>
</template>
<script>
export default {
data() {
return {
message: 'Hello Vue.js!'
}
}
}
</script>
2.v-bind:動態(tài)綁定數(shù)據(jù),將 Vue.js 實例中的數(shù)據(jù)綁定到 HTML 元素的屬性上。例如:
<template>
<div>
<a v-bind:href="url">Vue.js</a>
</div>
</template>
<script>
export default {
data() {
return {
url: 'https://cn.vuejs.org/'
}
}
}
</script>
3.v-if:條件渲染,根據(jù)表達式的值來決定是否渲染 HTML 元素。例如:
<template>
<div>
<p v-if="seen">Vue.js</p>
</div>
</template>
<script>
export default {
data() {
return {
seen: true
}
}
}
</script>
4.v-for:循環(huán)渲染,根據(jù)數(shù)據(jù)模型循環(huán)渲染 HTML 元素。例如:
<template>
<div>
<ul>
<li v-for="item in items" :key="item.id">{{ item.text }}</li>
</ul>
</div>
</template>
<script>
export default {
data() {
return {
items: [
{ id: 1, text: 'item1' },
{ id: 2, text: 'item2' },
{ id: 3, text: 'item3' }
]
}
}
}
</script>
5.v-on:事件綁定,將 HTML 元素的事件與 Vue.js 實例中的方法綁定。例如:
<template>
<div>
<button v-on:click="greet">Greet</button>
</div>
</template>
<script>
export default {
methods: {
greet() {
alert('Hello Vue.js!')
}
}
}
</script>
6.v-html:HTML 內(nèi)容渲染,將 Vue.js 實例中的數(shù)據(jù)渲染為 HTML 內(nèi)容。例如:
<template>
<div>
<p v-html="message"></p>
</div>
</template>
<script>
export default {
data() {
return {
message: '<strong>Hello Vue.js!</strong>'
}
}
}
</script>
以上是 Vue.js 中最常用的 6 個指令和渲染器的用法,可以根據(jù)具體場景靈活運用。