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.

23 lines
494 B

6 years ago
Demo = {
version: 1.0
};
7 years ago
$(function () {
var ref;
7 years ago
var AppRouter = BI.inherit(BI.Router, {
routes: {
"": "index"
7 years ago
},
7 years ago
index: function () {
BI.createWidget({
type: "demo.main",
ref: function (_ref) {
console.log(_ref);
ref = _ref;
},
7 years ago
element: "#wrapper"
7 years ago
});
}
7 years ago
});
7 years ago
new AppRouter;
BI.history.start();
7 years ago
});