ember arg types:运行时类型检查和默认值由prop types和decorator提供支持的glimmer组件参数 源码
余烬型 由和decorator提供参数的运行时类型检查和默认设置。 动机 ember-arg-types提供了一个装饰器( @arg ),该装饰器将参数映射到本地组件属性。 这使得可以在组件JS文件中轻松声明(和记录)默认值和类型检查。 例: @ arg ( string ) sortBy = 'id' ; 代替这个: get sortBy ( ) { const { sortBy = 'id' } = this . args ; assert ( '`sortBy` must be a string' , typeof sortBy === 'string' ) ; r
文件列表
ember-arg-types-master.zip
(预估有个60文件)
ember-arg-types-master
.travis.yml
1KB
.ember-cli
280B
ember-cli-build.js
494B
vendor
.gitkeep
0B
addon
decorator.ts
2KB
-private
throw-console-error.ts
380B
暂无评论