bug_report.yml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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: reproduction-link
  19. attributes:
  20. label: Link to minimal reproduction
  21. description: |
  22. The easiest way to provide a reproduction is by showing the bug in [The SFC Playground](https://sfc.vuejs.org/).
  23. If it cannot be reproduced in the playground and requires a proper build setup, try [StackBlitz](https://vite.new/vue).
  24. If neither of these are suitable, you can always provide a GitHub reporistory.
  25. The reproduction should be **minimal** - i.e. it should contain only the bare minimum amount of code needed
  26. to show the bug. See [Bug Reproduction Guidelines](https://github.com/vuejs/core/blob/main/.github/bug-repro-guidelines.md) for more details.
  27. Please do not just fill in a random link. The issue will be closed if no valid reproduction is provided.
  28. placeholder: Reproduction Link
  29. validations:
  30. required: true
  31. - type: textarea
  32. id: steps-to-reproduce
  33. attributes:
  34. label: Steps to reproduce
  35. description: |
  36. 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.
  37. placeholder: Steps to reproduce
  38. validations:
  39. required: true
  40. - type: textarea
  41. id: expected
  42. attributes:
  43. label: What is expected?
  44. validations:
  45. required: true
  46. - type: textarea
  47. id: actually-happening
  48. attributes:
  49. label: What is actually happening?
  50. validations:
  51. required: true
  52. - type: textarea
  53. id: system-info
  54. attributes:
  55. label: System Info
  56. description: Output of `npx envinfo --system --npmPackages vue --binaries --browsers`
  57. render: shell
  58. placeholder: System, Binaries, Browsers
  59. - type: textarea
  60. id: additional-comments
  61. attributes:
  62. label: Any additional comments?
  63. description: e.g. some background/context of how you ran into this bug.