Browse Source

Composition API

es6
guy 4 years ago
parent
commit
e101240fdb
  1. 2
      src/core/shortcut.js

2
src/core/shortcut.js

@ -23,7 +23,7 @@
widget._initProps(config); widget._initProps(config);
widget._initRoot(); widget._initRoot();
widget._initRef(); widget._initRef();
if (config.element || config.root || !lazy) { if (!lazy || config.element || config.root) {
widget._lazyConstructor(); widget._lazyConstructor();
} }
return widget; return widget;

Loading…
Cancel
Save