文件名称:derby-mixin:使用可重用的 mixin 扩展您的 Derby JS 组件
文件大小:3KB
文件格式:ZIP
更新时间:2024-07-16 12:38:02
JavaScript
德比混音 使用可重用的 mixin 扩展您的 Derby JS 组件。 它确保标准生命周期方法init() 、 create()和destroy()总是被调用。 安装 npm install derby-mixin --save 用法 var mixin = require('mixin'); function RobotMixin () {} RobotMixin.prototype.create = function () { console.log('beep'); }; function CyborgDogComponent () {} CyborgDogComponent.prototype.create = function () { console.log('bark'); } mixin(RobotMixin, RobotDogComponent);
【文件预览】:
derby-mixin-master
----test.js(1KB)
----.travis.yml(49B)
----LICENSE(1KB)
----README.md(701B)
----.gitignore(13B)
----index.js(549B)
----package.json(644B)