You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Use this checklist to make sure your PR is ready for merge. You may
delete any sections you don't need. -->
## DESCRIBE YOUR PR
This PR contains the updated Vue Quick Start guide.
I added code snippets for Pluvia and late-defined Vue apps. We could put
them in Expandables if it makes sense to you, but I don't think this is
necessary since these sections are relatively short anyway.
Closes: #14160
## IS YOUR CHANGE URGENT?
Help us prioritize incoming PRs by letting us know when the change needs
to go live.
- [ ] Urgent deadline (GA date, etc.): <!-- ENTER DATE HERE -->
- [ ] Other deadline: <!-- ENTER DATE HERE -->
- [x] None: Not urgent, can wait up to 1 week+
## SLA
- Teamwork makes the dream work, so please add a reviewer to your PRs.
- Please give the docs team up to 1 week to review your PR unless you've
added an urgent due date to it.
Thanks in advance for your help!
## PRE-MERGE CHECKLIST
*Make sure you've checked the following before merging your changes:*
- [ ] Checked Vercel preview for correctness, including links
- [ ] PR was reviewed and approved by any necessary SMEs (subject matter
experts)
- [ ] PR was reviewed and approved by a member of the [Sentry docs
team](https://github.com/orgs/getsentry/teams/docs)
## EXTRA RESOURCES
- [Sentry Docs contributor guide](https://docs.sentry.io/contributing/)
---------
Co-authored-by: Alex Krawiec <alex.krawiec@sentry.io>
Co-authored-by: Charly Gomez <charly.gomez@sentry.io>
In addition to capturing errors, you can monitor interactions between multiple services or applications by [enabling tracing](/concepts/key-terms/tracing/). You can also get to the root of an error or performance issue faster, by watching a video-like reproduction of a user session with [session replay](/product/explore/session-replay/web/getting-started/).
14
+
Choose the features you want to configure, and this guide will show you how:
14
15
15
-
Select which Sentry features you'd like to install in addition to Error Monitoring to get the corresponding installation and configuration instructions below.
If you're creating more than one Vue 3 app within your application, check out how to initialize the SDK for [multiple apps](./features/multiple-apps).
172
181
173
-
### Late-Defined Vue Apps
182
+
</Alert>
183
+
184
+
### Configuration for Late-Defined Vue Apps
185
+
186
+
If your Vue application is not defined from the start, you can add error monitoring for Vue-specific errors later on.
187
+
To manually add the integration for late-defined Vue applications, update your `main.js` file:
174
188
175
-
If the Vue application is not defined from the start, you can add error monitoring for Vue-specific errors later on.
176
-
To manually add the integration for late-defined Vue applications check out the docs for the <PlatformLinkto="/configuration/integrations/vue/">Vue Integration</PlatformLink>.
Let's test your setup and confirm that Sentry is working correctly and sending data to your Sentry project.
233
+
234
+
### Issues
235
+
236
+
To verify that Sentry is capturing errors and creating issues in your Sentry project, add the following test button to one of your pages, which will trigger an error that Sentry will capture when you click it:
To test your tracing configuration, update the previous code snippet to start a performance trace to measure the time it takes for your code to execute:
To view and resolve the recorded error, log into [sentry.io](https://sentry.io) and select your project. Clicking on the error's title will open a page where you can see detailed information and mark it as resolved.
0 commit comments