x-data-spreadsheet
Version:
a javascript xpreadsheet
12 lines (10 loc) • 307 B
JavaScript
import { Element } from './element';
import { cssPrefix } from '../config';
import { t } from '../locale/locale';
export default class Button extends Element {
// type: primary
constructor(title, type = '') {
super('div', `${cssPrefix}-button ${type}`);
this.child(t(`button.${title}`));
}
}