fineui是帆软报表和BI产品线所使用的前端框架。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

36 lines
855 B

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,
}
],
};
}
}