没有合适的资源?快使用搜索试试~ 我知道了~
之前关于vue.js2.0父组件的一点学习,最近需要回顾,就顺便发到随笔上了 <body> <div id=counter-event-example> <p>{{ total }}</p> <button-counter v-on:ee=incrementTotal></button-counter> <button-counter v-on:ee=incrementTotal></button-counter> </div> [removed] Vue.component('button-counter', { template
资源推荐
资源详情
资源评论
详解详解vue.js2.0父组件点击触发子组件方法父组件点击触发子组件方法
之前关于vue.js2.0父组件的一点学习,最近需要回顾,就顺便发到随笔上了
<body>
<div id="counter-event-example">
<p>{{ total }}</p>
<button-counter v-on:ee="incrementTotal"></button-counter>
<button-counter v-on:ee="incrementTotal"></button-counter>
</div>
<script>
Vue.component('button-counter', {
template: '<button v-on:click="increment">{{ counter }}</button>',
data: function () {
return {
counter: 0
}
},
methods: {
increment: function () {
this.counter += 1
this.$emit('ee', 'cc' )
}
},
})
new Vue({
el: '#counter-event-example',
data: {
total: 'arg'
},
methods: {
incrementTotal: function (b) {
this.total = b + '1';
}
}
})
</script>
</body>
子组件通过$emit触发父组件的事件,$emit后面的参数是向父组件传参,注意,父组件的事件处理函数直接写函数名即可,不
要加(),参数直接传递到了父组件的methods的事件处理函数了。
另外,写一个小拾遗。vue子组件用了定义模板组件功能,然后在父组件里定义一个HTML元素绑定这个子组件后才能在父组
件通过这个HTML元素使用。
再说一个非常方便的v-ref
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="vue.js"></script>
</head>
<body>
<div id="parent">
<input type="text" name="" id="" v-model="msg" />
<input type="button" id="" value="dianji" @click="clickDt" />
<user-profile ref="profile"></user-profile>
</div>
<script>
Vue.component('user-profile', {
template: '<span>{{ msg }}</span>',
data: function () {
return {
msg: 123
};
},
资源评论
weixin_38619207
- 粉丝: 7
- 资源: 920
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 星光暗区巨魔绘制自瞄V6.1.ipa
- HTML川剧网站源码.zip
- (源码)基于Maven + MyBatis的图书管理系统.zip
- 2024 年 10 月 26 日,第 19 届中国 Linux 内核开发者大会于湖北武汉成功举办 来自全国各地的近 400 名内核开发者相约华中科技大学,聆听讲座,共商 Linux 内核未来之发展12
- (源码)基于C++的仓储盘点系统.zip
- linux常用命令大全
- mongodb-compass-1.44.6-darwin-x64.dmg
- (源码)基于JavaFX和MyBatis的HSY寝室管理系统.zip
- 对AVEC2014视频进行Dlib或MTCNN人脸裁剪
- excel数据分析案例1数据
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功