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.
35 lines
734 B
35 lines
734 B
2 years ago
|
import { shortcut, Widget } from "@/core";
|
||
|
|
||
|
@shortcut()
|
||
|
export class StateEditor extends Widget {
|
||
|
static xtype = "demo.state_editor";
|
||
|
|
||
|
props = { baseCls: "" };
|
||
|
|
||
|
render() {
|
||
|
const self = this;
|
||
|
|
||
8 years ago
|
return {
|
||
|
type: "bi.horizontal_adapt",
|
||
2 years ago
|
items: [
|
||
|
{
|
||
|
type: "bi.state_editor",
|
||
|
ref() {
|
||
|
self.editor = this;
|
||
|
},
|
||
|
cls: "bi-border",
|
||
|
width: 300,
|
||
|
}
|
||
|
],
|
||
|
vgap: 20,
|
||
7 years ago
|
};
|
||
2 years ago
|
}
|
||
8 years ago
|
|
||
2 years ago
|
mounted() {
|
||
|
const self = this;
|
||
|
setTimeout(() => {
|
||
8 years ago
|
self.editor.setState(["*", "*"]);
|
||
7 years ago
|
}, 1000);
|
||
8 years ago
|
}
|
||
2 years ago
|
}
|