-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instruct to use the recommended way of using Vue component tracking #11917
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
2 Skipped Deployments
|
Bundle ReportChanges will increase total bundle size by 95.28kB (0.48%) ⬆️. This is within the configured threshold ✅ Detailed changes
|
}); | ||
``` | ||
|
||
The following hooks are available to track in Vue 3: `['activate', 'create', 'unmount', 'mount', 'update']` | ||
The default set of tracked hooks is `['activate', 'mount', 'update']`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's another item in the v9 list to remove update
as a hook to track by default, right? No action required, was just remembering that we discussed this
The following hooks are available to track in Vue 3: `['activate', 'create', 'unmount', 'mount', 'update']` | ||
|
||
Note, that when specifying `hooks`, we use the simple verb rather than `before` and `-ed` pairs. For example, `unmount` is correct, while `beforeUnmount` and `unmounted` are incorrect. | ||
The following hooks are available to track: `['activate', 'create', 'unmount', 'mount', 'update']` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
l: Iet's also add the hooks tracked by default here
DESCRIBE YOUR PR
Based on getsentry/sentry-javascript#14265 and getsentry/sentry-javascript#14385 we are updating how users should enable component tracking for Vue and Nuxt.
IS YOUR CHANGE URGENT?
Help us prioritize incoming PRs by letting us know when the change needs to go live.