bug_report.yml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. name: "\U0001F41E Bug report"
  2. description: Create a report to help us improve
  3. body:
  4. - type: markdown
  5. attributes:
  6. value: |
  7. **Before You Start...**
  8. This form is only for submitting bug reports. If you have a usage question
  9. or are unsure if this is really a bug, make sure to:
  10. - Read the [docs](https://vuejs.org/)
  11. - Ask on [Discord Chat](https://chat.vuejs.org/)
  12. - Ask on [GitHub Discussions](https://github.com/vuejs/core/discussions)
  13. - Look for / ask questions on [Stack Overflow](https://stackoverflow.com/questions/ask?tags=vue.js)
  14. Also try to search for your issue - it may have already been answered or even fixed in the development branch.
  15. However, if you find that an old, closed issue still persists in the latest version,
  16. you should open a new issue using the form below instead of commenting on the old issue.
  17. - type: input
  18. id: version
  19. attributes:
  20. label: Vue version
  21. validations:
  22. required: true
  23. - type: input
  24. id: reproduction-link
  25. attributes:
  26. label: Link to minimal reproduction
  27. description: |
  28. The easiest way to provide a reproduction is by showing the bug in [The SFC Playground](https://sfc.vuejs.org/).
  29. If it cannot be reproduced in the playground and requires a proper build setup, try [StackBlitz](https://vite.new/vue).
  30. If neither of these are suitable, you can always provide a GitHub reporistory.
  31. The reproduction should be **minimal** - i.e. it should contain only the bare minimum amount of code needed
  32. to show the bug. See [Bug Reproduction Guidelines](https://github.com/vuejs/core/blob/main/.github/bug-repro-guidelines.md) for more details.
  33. Please do not just fill in a random link. The issue will be closed if no valid reproduction is provided.
  34. placeholder: Reproduction Link
  35. validations:
  36. required: true
  37. - type: textarea
  38. id: steps-to-reproduce
  39. attributes:
  40. label: Steps to reproduce
  41. description: |
  42. What do we need to do after opening your repro in order to make the bug happen? Clear and concise reproduction instructions are important for us to be able to triage your issue in a timely manner. Note that you can use [Markdown](https://guides.github.com/features/mastering-markdown/) to format lists and code.
  43. placeholder: Steps to reproduce
  44. validations:
  45. required: true
  46. - type: textarea
  47. id: expected
  48. attributes:
  49. label: What is expected?
  50. validations:
  51. required: true
  52. - type: textarea
  53. id: actually-happening
  54. attributes:
  55. label: What is actually happening?
  56. validations:
  57. required: true
  58. - type: textarea
  59. id: system-info
  60. attributes:
  61. label: System Info
  62. description: Output of `npx envinfo --system --npmPackages vue --binaries --browsers`
  63. render: shell
  64. placeholder: System, Binaries, Browsers
  65. - type: textarea
  66. id: additional-comments
  67. attributes:
  68. label: Any additional comments?
  69. description: e.g. some background/context of how you ran into this bug.