提交学习笔记专用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
515 B

  1. # vite-plugin-vue-devtools
  2. > `vite-plugin-vue-devtools` is a `Vite` plugin designed to enhance the `Vue` developer experience.
  3. ## Installation
  4. ```sh
  5. npm add -D vite-plugin-vue-devtools
  6. ```
  7. ## Usage
  8. ### Configuration Vite
  9. ```ts
  10. import { defineConfig } from 'vite'
  11. import VueDevTools from 'vite-plugin-vue-devtools'
  12. export default defineConfig({
  13. plugins: [
  14. VueDevTools(),
  15. vue(),
  16. ],
  17. })
  18. ```
  19. ## Documentation
  20. Check out all the DevTools details at [devtools.vuejs.org](https://devtools.vuejs.org).