加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ch14.html 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="js/vue.js"></script>
</head>
<body>
<a href="index.html">返回</a>
<div class="app">
<h2>自定义指令</h2>
<div>
count:{{count}}
<input type="text" v-mybind:value="count">
<button @click="count++">加1</button>
</div>
</div>
<script>
Vue.config.productionTip=false //关闭生产状态提示
const x=new Vue({
// el:".app",
data:function (){ //data的第二种写法
return{
count:1
}
},
directives:{
mybind: {
// element.value =binding.value
bind(element, binding) {
console.log("bind", element, binding)
element.value = binding.value
},
inserted(element, binding) {
console.log("inserted", element, binding)
// element.value = binding.value
},
update(element, binding) {
console.log("update", element, binding)
element.value = binding.value
}
}
}
})
x.$mount(".app")//挂载方式
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化