phecda-vue 3.0.0-beta.16 → 3.0.0-beta.17
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -263,7 +263,7 @@ function useV(module2) {
|
|
|
263
263
|
get(target, key) {
|
|
264
264
|
if (typeof target[key] === "function") {
|
|
265
265
|
if (!cache[key])
|
|
266
|
-
cache[key] = target[key].bind(
|
|
266
|
+
cache[key] = target[key].bind(target);
|
|
267
267
|
return cache[key];
|
|
268
268
|
}
|
|
269
269
|
if (target[key]?.__v_skip)
|
package/dist/index.mjs
CHANGED
|
@@ -223,7 +223,7 @@ function useV(module) {
|
|
|
223
223
|
get(target, key) {
|
|
224
224
|
if (typeof target[key] === "function") {
|
|
225
225
|
if (!cache[key])
|
|
226
|
-
cache[key] = target[key].bind(
|
|
226
|
+
cache[key] = target[key].bind(target);
|
|
227
227
|
return cache[key];
|
|
228
228
|
}
|
|
229
229
|
if (target[key]?.__v_skip)
|