1 Star 0 Fork 0

柠檬/Vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
directive.html 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>v-on指令</title>
</head>
<body>
<div id="app">
<input type="text" v-model="money">
<button v-on:click ="money++">充值</button>
<p>ta喜欢不喜欢你?</p>
<span>{{isLove?'':'不'}}喜欢</span>
<button v-on:click="isLove=!isLove">再掰一瓣</button>
<p>最帅的爱豆:{{bfArr[bfArr.length-1]}}</p>
<input type="text" v-model="bfName" v-on:change="addIdol" :data-qwer="money">
</div>
<script src="./js/vue.js"></script>
<script>
let vm =new Vue({
el:'#app',
data:{
money:999,
isLove:true,
bfArr:["朱一龙","肖战","易烊千玺"],
bfName:''
},
methods: {
// addIdol :function(){}
addIdol(){
// js中获取需要加 this
this.bfArr.push(this.bfName);
this.bfName=''
}
}
})
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yan_jun_feng/Vue.git
git@gitee.com:yan_jun_feng/Vue.git
yan_jun_feng
Vue
Vue
master

搜索帮助