import { shortcut, Widget } from "@/core"; @shortcut() export class Func extends Widget { static xtype = "demo.multi_select_item"; props = { baseCls: "demo-func" }; render() { return { type: "bi.vertical", items: [ { type: "bi.label", height: 30, text: "复选item", }, { type: "bi.multi_select_item", text: "复选项", } ], hgap: 300, }; } }