File size: 432 Bytes
4d70170 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# How to Setup Vue DevTools for Vue 3
## Local Development
```bash
# Clone repo
git clone git@github.com:vuejs/vue-devtools.git
# Change into devtools directory
cd vue-devtools
# Checkout next branch
git checkout next
# Install dependencies
yarn
# Build TypeScript dependencies
yarn build:watch
# Start local environment
yarn dev:shell-vue3
```
Once everything is setup, you should be able to visit `http://localhost:8090/`
|