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 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(this);
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(this);
226
+ cache[key] = target[key].bind(target);
227
227
  return cache[key];
228
228
  }
229
229
  if (target[key]?.__v_skip)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phecda-vue",
3
- "version": "3.0.0-beta.16",
3
+ "version": "3.0.0-beta.17",
4
4
  "description": "provide phecda function to vue",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",