-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathview.js
More file actions
24 lines (15 loc) · 760 Bytes
/
Copy pathview.js
File metadata and controls
24 lines (15 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export { default } from '/Users/qn/work/lowcodecloud/lowcode-vue-material/src/index.tsx';
import * as componentInstances from '/Users/qn/work/lowcodecloud/lowcode-vue-material/src/index.tsx';
import '/Users/qn/work/lowcodecloud/lowcode-vue-material/src/index.scss'
export * from '/Users/qn/work/lowcodecloud/lowcode-vue-material/src/index.tsx';
const coveredComponents = {};
const library = 'BizComps';
const execCompile = !!false;
if (!execCompile) {
window[library] = Object.assign({__esModule: true}, componentInstances || {}, coveredComponents || {});
}
function getRealComponent(component, componentName) {
if (component.default) return component.default;
if (component[componentName]) return component[componentName];
return component;
}