JSDoc @mixes 标签
目录
语法
@mixes <OtherObjectPath>
概述
The @mixes tag indicates that the current object mixes in all the members from OtherObjectPath
,
which is a @mixin.
@mixes
标签指示当前对象混入了OtherObjectPath
对象的所有成员,被混入的对象就是一个@mixin。
示例
首先,我们用@mixin标签描述一个混入:
现在,我们添加一个FormButton类,并且调用"mix"函数,将Eventful的所有功能混入到FormButton,这样FormButton也可以触发事件和监听了。我们使用@mixes标签,以表明FormButton混入了Eventful的功能。