首页 > 其他 > 详细

v-model实现的原理

时间:2021-06-02 09:30:24      阅读:30      评论:0      收藏:0      [点我收藏+]

v-model实现的原理

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
</head>
<body>
<div id="app">
    {{message}}
  <input type="text" @input="inputhandle" :value="message">
</div>
<script src="../vue.js"></script>
<script>
  const app = new Vue({
    el: ‘#app‘,
    data: {
      message: ‘hello‘
    },
    methods: {
      inputhandle(e){
        console.log(‘----‘,e.target.value)
        this.message = e.target.value
      }
    }
  })
</script>
</body>
</html>

v-model实现的原理

原文:https://www.cnblogs.com/ch2020/p/14839147.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!