import { shortcut, Widget } from "@/core"; import { ButtonGroup } from "@/base"; @shortcut() export class Func extends Widget { static xtype = "demo.button_tree"; props = { baseCls: "demo-func" }; render() { return { type: "bi.button_tree", chooseType: ButtonGroup.CHOOSE_TYPE_MULTI, layouts: [ { type: "bi.vertical", }, { type: "bi.center_adapt", } ], items: [ { type: "bi.label", text: "0", value: 0, }, { type: "bi.button", text: "1", value: 1, } ], }; } }