UNPKG

uview-next

Version:

基于uView UI 2.0,110+高质量组件库,支持vue2和vue3,支持鸿蒙,支持多语言,搭配便捷工具助力,让开发更得心应手

23 lines (18 loc) 463 B
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};