1 Star 1 Fork 0

sundaysmile / Vue.js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
v-model.html 971 Bytes
一键复制 编辑 原始数据 按行查看 历史
Heretic324 提交于 2020-06-08 21:24 . Add files via upload
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>v-model</title>
</head>
<body>
<div id="app">
<input type="button" value="修改message" @click="setM">
<input type="text" v-model="message" @keyup.enter="getM">
<h2>{{ message }}</h2>
</div>
<!-- 开发环境版本,包含了有帮助的命令行警告 -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script>
var app = new Vue({
el:"#app",
data:{
message:"黑马程序员"
},
methods: {
getM:function(){
alert(this.message);
},
setM:function(){
this.message ="酷丁🐟";
}
},
})
</script>
</body>
</html>
JavaScript
1
https://gitee.com/lzp507/Vue.js.git
git@gitee.com:lzp507/Vue.js.git
lzp507
Vue.js
Vue.js
master

搜索帮助