帆软决策平台数据连接界面库
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.

12 lines
239 B

import i18n from '../private/i18n';
BI.DOM.ready(() => {
const app = require('./app/app').default;
// TODO: 先采用这种方式方便前端调试
BI.addI18n(i18n);
BI.createWidget({
type: app,
element: 'body',
});
6 years ago
});