“VUE 本地应用”的版本间的差异

来自姬鸿昌的知识库
跳到导航 跳到搜索
第7行: 第7行:
  
 
=== v-text ===
 
=== v-text ===
 +
设置标签的文本值(textContent)<syntaxhighlight lang="html">
 +
<div id="app">
 +
<h2 v-text="message"></h2>
 +
</div>
 +
 +
var app = new Vue({
 +
  el:"#app",
 +
  data:{
 +
    message:"hello world"
 +
  }
 +
})
 +
</syntaxhighlight>

2023年6月7日 (三) 08:00的版本

介绍

1.内容绑定,事件绑定

2.显示切换,属性绑定

3.列表循环,表单元素绑定

v-text

设置标签的文本值(textContent)

<div id="app">
 <h2 v-text="message"></h2>
</div>

var app = new Vue({
  el:"#app",
  data:{
    message:"hello world"
  }
})