@usermaven/vue 1.5.9 → 1.5.10-rc.108

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.
Files changed (2) hide show
  1. package/README.md +3 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -48,11 +48,9 @@ usermaven.track('button_click', {
48
48
  })
49
49
 
50
50
  // Identify a user
51
- usermaven.identify({
52
- id: 'user_123_456',
51
+ usermaven.identify('user123', {
53
52
  email: 'user@example.com',
54
- name: 'John Doe',
55
- // ... more fields
53
+ name: 'John Doe'
56
54
  })
57
55
  </script>
58
56
  ```
@@ -67,7 +65,7 @@ import { usePageView } from '@usermaven/vue'
67
65
  const { track } = usePageView()
68
66
 
69
67
  // Manually track a page view if needed
70
- // track('pageview')
68
+ track('pageview')
71
69
  </script>
72
70
  ```
73
71
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@usermaven/vue",
3
- "version": "1.5.9",
3
+ "version": "1.5.10-rc.108",
4
4
  "description": "Vue.js SDK for Usermaven Analytics",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "dependencies": {
9
- "@usermaven/sdk-js": "1.5.9"
9
+ "@usermaven/sdk-js": "1.5.10-rc.108"
10
10
  },
11
11
  "peerDependencies": {
12
12
  "vue": "^3.0.0"