@cataract6545/tmui
Version:
tm-vuetify是一个新势力由主题驱动的UI组件库,相比其它优势大,组件全,设计趋势紧跟未来。具有主题生成,主题实时切换,暗黑实时切换,lottie动画,图表等新颖功能,tmui TMUI
23 lines (18 loc) • 491 B
JavaScript
import Barcode from "../Barcode.js";
class GenericBarcode extends Barcode {
constructor(data, options) {
super(data, options); // Sets this.data and this.text
}
// Return the corresponding binary numbers for the data provided
encode() {
return {
data: "10101010101010101010101010101010101010101",
text: this.text
};
}
// Resturn true/false if the string provided is valid for this encoder
valid() {
return true;
}
}
export { GenericBarcode };