封装vue组件

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title>演示分别使用 v-bind和v-model与子组件进行数据交互</title>
    <script src="vue.js"></script>
</head>
<body>

     <!--组件封装-->
    <template id="vm">
        <div>
            <div>
                <input v-model="ival"  type="checkbox"  />{{p1}}
            </div>
        </div>
    </template>


    <script>
        Vue.component("vm-test1", {
            template: '#vm',
            props: {
                //p1用于接收 父中的v-model的值
                p1: { type: String, default: "" },
                on: { type: String, default: "1" },
                off: { type: String, default: "0" },
            },
            //model必须叫input的事件名给起一个别名,在这里叫update
            model: {
                prop: "p1", //p1用于接收 父中的v-model的值
                event:"update1"
            },
            created: function () {
                this.ival = this.p1 == this.on;
            },
            mounted: function () {
               
            },
            data: function () {
                return {ival: ""};
            },
            watch: {
                ival: function (newValue, oldValue) {
                    this.$emit("update1", this.ival ? this.on : this.off); 
                },
                p1: function (newValue, oldValue) {
                    this.ival = this.p1 == this.on;
                }
            }
        });
    </script>


<!--使用示例-->
    <div id="app">
        使用组件示例 :
        <vm-test1 :on="1" :off="0" v-model="text">   </vm-test1>
    </div>

    <script>
       let test =  new Vue({
            el: "#app",
            data: {
                text: "1",
           } 
        });
    </script>
</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值