diff --git a/packages/web-theme/template/index.ts.hbs b/packages/web-theme/template/index.ts.hbs index 6684687138805ef3b1f0db94eb8fdbf721b9c7dd..4655bbd8516809af81d5bc21ff368456e7a0821a 100644 --- a/packages/web-theme/template/index.ts.hbs +++ b/packages/web-theme/template/index.ts.hbs @@ -61,6 +61,7 @@ import TreeExpBar from './control-layout/control-layout-model-repository-tree-ex import ChartExpBar from './control-layout/control-layout-model-repository-chart-exp-bar-layout'; import SearchForm from './control-layout/control-layout-model-repository-search-form-layout'; import Tree from './control-layout/control-layout-model-repository-tree-layout'; +import DataView from './control-layout/control-layout-model-repository-data-view-layout'; /** * 安装视图默认布局 @@ -216,4 +217,6 @@ export function install(callBack: (key: string, model: any) => void): void { callBack('SEARCHFORM_DEFAULT', SearchForm); // 树 callBack('TREEVIEW_DEFAULT', Tree); + // 数据视图 + callBack('DATAVIEW_DEFAULT', DataView); }