mixins:将 mixin 应用到您的类

时间:2021-05-30 18:52:53
【文件属性】:
文件名称:mixins:将 mixin 应用到您的类
文件大小:3KB
文件格式:ZIP
更新时间:2021-05-30 18:52:53
JavaScript 将 mixins 应用到您的 JavaScript 类 使用mixins-decorator模块,您可以获得 mixins 的好处。 var mixin1 = { foo : function ( ) { console . log ( 'foo' ) ; } } ; var mixin2 = { bar : function ( ) { console . log ( 'bar' ) ; } } ; function Foo ( ) { } mixins ( mixin1 , mixin2 ) ( Foo ) ; // Or, with ES6 classes @ mixins ( mixin1 , mixin2 ) class Foo { } var foo = new Foo ( ) ; foo . foo ( ) ; // foo foo . bar ( ) ; // bar
【文件预览】:
mixins-master
----.gitignore(26B)
----package.json(708B)
----src()
--------index.js(297B)
----LICENSE(739B)
----index.js(556B)
----test.js(2KB)
----README.md(880B)
----babelhook.js(40B)

网友评论