码迷,mamicode.com
首页 > 其他好文 > 详细

vue 组件 模板input双向数据数据

时间:2018-03-04 13:07:03      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:rip   net   bind   vue   one   ops   实例   div   post   


<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title of page</title>
</head>
<body>


<div id="example">
<input v-model="parentMsg">
<br>
<child v-bind:my-message="parentMsg"></child>

</div>

</body>
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.13/dist/vue.js"></script>
<script >
// 注册
Vue.component(‘child‘, {
props: [‘myMessage‘],
template: ‘<span>{{ myMessage }}</span>‘
})

// 创建根实例
new Vue({
el: ‘#example‘,
data:{
parentMsg:‘‘
}
})
</script>
</html>

vue 组件 模板input双向数据数据

标签:rip   net   bind   vue   one   ops   实例   div   post   

原文地址:https://www.cnblogs.com/dianzan/p/8504103.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!