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