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.

44 lines
1.1 KiB

import { shortcut, Widget } from "@/core";
@shortcut()
export class VtapeLayout extends Widget {
static xtype = "demo.vtape";
props = { baseCls: "demo-vtape" };
render() {
8 years ago
return {
type: "bi.vtape",
vgap: 10,
7 years ago
items: [
8 years ago
{
height: 100,
7 years ago
el: {
type: "bi.label",
text: "1",
cls: "layout-bg1",
},
tgap: 10,
vgap: 10,
},
{
8 years ago
height: 200,
7 years ago
el: {
type: "bi.label",
text: "2",
cls: "layout-bg2",
},
},
{
7 years ago
height: "fill",
el: {
type: "bi.label",
text: "3",
cls: "layout-bg3",
},
8 years ago
}
],
7 years ago
};
8 years ago
}
}