This is an example project showing how to use @bugsnag/js
with a Vue project.
This project was bootstrapped with Vue CLI
.
Clone the repo and cd
into the directory of this example:
git clone [email protected]:bugsnag/bugsnag-js.git
cd bugsnag-js/examples/vue
Take a look at…
src/main.js
for how to setup Bugsnag for your applicationsrc/components/BadButtons.vue
to see how the errors are triggered
The project includes a Dockerfile
. If you're familiar with docker, this is the easiest way to start the example. Otherwise, skip ahead to the without docker section.
docker build -t bugsnag-js-example-vue . && \
docker run -p 5000:5000 -it bugsnag-js-example-vue
Note: remember to replace YOUR_API_KEY
in src/lib/bugsnag.js
with your own!
Ensure you have a version of Node.js >=4 on your machine.
npm install
npm run serve
Note: remember to replace YOUR_API_KEY
in src/main.js
with your own!