smbls 2.9.10 → 2.9.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -3
- package/dist/index.js.map +2 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -8628,9 +8628,10 @@ var create2 = (App, options = defaultOptions) => {
|
|
|
8628
8628
|
if (define2)
|
|
8629
8629
|
src_default.define(options.define);
|
|
8630
8630
|
return src_default.create({
|
|
8631
|
-
extend: App,
|
|
8632
|
-
|
|
8633
|
-
|
|
8631
|
+
extend: [App, {
|
|
8632
|
+
routes: options.pages,
|
|
8633
|
+
state: options.state
|
|
8634
|
+
}]
|
|
8634
8635
|
}, null, "app", {
|
|
8635
8636
|
extend: [Box],
|
|
8636
8637
|
context: {
|