博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用vue的v-model自定义 checkbox组件
阅读量:5326 次
发布时间:2019-06-14

本文共 1037 字,大约阅读时间需要 3 分钟。

1   
4 5 Vue.component('my-checkbox', { 6 template:'#c', 7 model: { 8 prop: 'checked', 9 event: 'change' //要触发的事件10 },11 props: {12 checked:Boolean, //接收外部传来的值13 value: String14 },15 methods:{16 onChange () {17 console.log(event.target)18 console.log(this.value)19 this.$emit('change',event.target.checked)20 21 }22 }23 })24 25 26
33 34 Vue.component('greetings-component', {35 template: '#greetings',36 data: function () {37 return {38 user: 'heroaa',39 foo:'hello',40 f:true,41 world:'world'42 }43 },44 methods:{45 get (v) {46 console.log(v)47 }48 }49 });50 51 52
53
54
55 56 new Vue({57 el: '#app',58 data:{59 user:'hero'60 }61 })

 

转载于:https://www.cnblogs.com/or2-/p/8436794.html

你可能感兴趣的文章
VS2017动态链接库(.dll)的生成与使用
查看>>
Python正则表达式
查看>>
OC中文件读取类(NSFileHandle)介绍和常用使用方法
查看>>
Linux进程间通信--命名管道
查看>>
UVa 10970 - Big Chocolate
查看>>
Java基础
查看>>
js输出
查看>>
set,env,export,set -x,set -e;
查看>>
H5多文本换行
查看>>
flask-script插件
查看>>
HAL层三类函数及其作用
查看>>
Odoo 去掉 恼人的 "上午"和"下午"
查看>>
web@h,c小总结
查看>>
USACO 3.2 msquare 裸BFS
查看>>
Naive and Silly Muggles (计算几何)
查看>>
java编程思想笔记(一)——面向对象导论
查看>>
nginx 出现504 Gateway Time-out的解决方法
查看>>
(HDU)1089 --A+B for Input-Output Practice (I)(输入输出练习(I))
查看>>
SQL Server 备份和还原
查看>>
Data Structure 基本概念
查看>>