跳到主要内容

认识

2023年04月22日
柏拉文
越努力,越幸运

一、认识


v-bind, 缩写为 :。 用于动态地绑定一个或多个 attribute,或一个组件 prop 到表达式。

二、修饰符


2.1 .attr

2.2 .prop

v-bind.prop 作为一个 DOM property 绑定而不是作为 attribute 绑定

<template>
<div>
<div :text-content.prop="text"></div>
</div>
</template>

<script>

export default {
name: "App",
data() {
return {
text: "为人进出的门紧锁着"
};
},
};
</script>

2.3 .camel