博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Vue +TS] Use Two-Way Binding in Vue Using @Model Decorator with TypeScript
阅读量:5062 次
发布时间:2019-06-12

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

Vue models, v-model, allow us to use two-way data binding, which is useful in some cases such as forms. This lesson shows how to use it by creating a custom checkbox component using the @Model decorator in TypeScript.

 

When using the v-model, the custom component will receive 'value' prop from the parent component. If we also want to pass ':value' to the custom component, we need to use  '@Model('change') propName'.

v-model will also received 'change' event for components communcation.

 

Checkbox:

 

Parent Component:

 

转载于:https://www.cnblogs.com/Answer1215/p/7517612.html

你可能感兴趣的文章
功能测试用例编写
查看>>
【笔记】给自己的博客侧栏添加小时钟
查看>>
ASPX页面弹窗的方法---javascript
查看>>
JavaScript和快速响应的用户界面
查看>>
深入浅出的排序算法-选择排序
查看>>
delphi -----(去掉窗口最大化,最小化、关闭),主窗口,和子窗口之间的设置
查看>>
一个小的手机答题网页【1. 需求及数据库设计】
查看>>
IOS 音频的 使用说明
查看>>
SQL Prompt Snippet Manager 妙用
查看>>
c# 学习心得(函数方法类)
查看>>
linux 命令行下的作业管理
查看>>
PL/SQL Developer连接本地Oracle 11g 64位数据库
查看>>
GNU make manual 翻译(七十九)
查看>>
Visual Studio 2008中FormatX源代码格式化插件
查看>>
内部排序技术
查看>>
string s = null 和 string s = “”的区别
查看>>
Jquery ajax调用webservice总结
查看>>
职业生涯【1】选择职业
查看>>
实用手册:130+ 提高开发效率的 vim 常用命令
查看>>
基于 jQuery & CSS3 实现智能提示输入框光标位置
查看>>