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

Vue 中 v-model 在自定义组件中的使用

时间:2020-07-02 16:13:37      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:NPU   code   new   ring   class   text   mode   model   html   

<div id="app">
    "inputValue 的值:" + {{inputValue}}
    <my-input v-model="inputValue"></my-input>
</div>
Vue.component(‘my-input‘, {
    template: ‘<div><input type="text" ref="el" :value="value" @input="onInput"/></div>‘,
    props: {
        value: String
    },
    methods: {
        onInput() {
            this.$emit(‘input‘, this.$refs.el.value);
        }
    }
});
new Vue({
    el: ‘#app‘,
    data: {
        inputValue: ‘10‘
    }
});

Vue 中 v-model 在自定义组件中的使用

标签:NPU   code   new   ring   class   text   mode   model   html   

原文地址:https://www.cnblogs.com/xiaoyucoding/p/13225090.html

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