create-packer 1.24.9 → 1.24.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-packer",
3
- "version": "1.24.9",
3
+ "version": "1.24.10",
4
4
  "main": "index.js",
5
5
  "repository": "https://github.com/kevily/create-packer",
6
6
  "author": "1k <bug_zero@163.com>",
@@ -60,7 +60,7 @@ export async function create<P extends Record<string, any>, Refs extends Record<
60
60
  }
61
61
  await current.pending
62
62
  props && current.instance.$setProps(props)
63
- // Delay render to avoid sync issue
63
+ // Delay return to avoid sync issue
64
64
  // ------------------------------------------------------------------------
65
65
  await new Promise(resolve => setTimeout(resolve))
66
66
  return current.instance as Refs & refsType<P>