Searched refs:customComponentMap (Results 1 – 9 of 9) sorted by relevance
/third_party/jsframework/test/ut/model/ |
D | index.ts | 52 const customComponentMap: any = {}; constant 55 customComponentMap.parent = { 78 customComponentMap.child = { 84 const page = {doc, customComponentMap, options}; constant 189 customComponentMap.foo = { 195 customComponentMap.bar = { 201 const app = { doc, customComponentMap, differ, options }; constant 202 …const vm = new Vm('foo', customComponentMap.foo, { __app: app, __rootVm: true }, null, data, null); 217 customComponentMap.foo = { 224 const app = { doc, customComponentMap, differ, options }; constant [all …]
|
/third_party/jsframework/runtime/main/page/ |
D | Page.ts | 134 get customComponentMap() { method in Page 138 set customComponentMap(customComponentMap: object) { method in Page 139 this._customComponentMap = customComponentMap;
|
D | register.ts | 217 const { customComponentMap } = app; constant 218 if (customComponentMap[name]) { 222 customComponentMap[name] = def;
|
/third_party/jsframework/test/ut/app/ |
D | bundle.ts | 64 const page = { doc, customComponentMap: {}, options }; constant 80 expect(page.customComponentMap['a'].template).eql(componentTemplate);
|
/third_party/jsframework/runtime/main/app/ |
D | bundle.ts | 125 if (page.customComponentMap) { 128 const options: object = page.customComponentMap[componentName] || {};
|
/third_party/jsframework/runtime/main/page/api/ |
D | misc.ts | 56 page.customComponentMap = null;
|
/third_party/jsframework/test/ut/ |
D | runtime.ts | 146 expect(pageMap[instanceId].customComponentMap).eql(expectComponent);
|
/third_party/jsframework/runtime/main/model/ |
D | index.ts | 124 if (!options && this.__app.customComponentMap) { 125 options = this.__app.customComponentMap[type];
|
D | compiler.ts | 374 if (vm._app && vm._app.customComponentMap) { 375 component = vm._app.customComponentMap[type];
|