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.
24 lines
563 B
24 lines
563 B
import { shortcut, Widget } from "@/core"; |
|
|
|
@shortcut() |
|
export class ClearEditor extends Widget { |
|
static xtype = "demo.clear_editor"; |
|
|
|
props = { baseCls: "" }; |
|
|
|
render() { |
|
return { |
|
type: "bi.horizontal_auto", |
|
items: [ |
|
{ |
|
type: "bi.clear_editor", |
|
cls: "bi-border", |
|
width: 300, |
|
watermark: "这个是带清除按钮的", |
|
value: 123, |
|
} |
|
], |
|
vgap: 20, |
|
}; |
|
} |
|
}
|
|
|