import { shortcut, Widget } from "@/core"; @shortcut() export class Html extends Widget { static xtype = "demo.html"; props = { baseCls: "demo-html" }; render() { return { type: "bi.vertical", items: [ { type: "bi.html", text: "

在bi.html标签中使用html原生标签

", }, { type: "bi.html", text: "", } ], hgap: 300, vgap: 20, }; } }