2-feature-request.yml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. name: 向 Wot Starter 提出新功能需求
  2. description: 创建一个 Issue 描述一下你的功能需求。
  3. title: '[新功能需求] 请在此填写标题'
  4. labels: ['feature: need confirm']
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. 在提交功能需求前,请注意:
  10. - 确认这是一个通用功能,并且无法通过现有的 API 或 Slot 实现。
  11. - 尝试在 [Issue](https://github.com/wot-ui/wot-starter/issues)列表中搜索,并且没有发现同样的需求。
  12. - 请确保描述清楚你的需求,以便其他开发者更好地理解你的需求。
  13. - type: textarea
  14. id: description
  15. attributes:
  16. label: 这个功能解决了什么问题?
  17. description: 请尽可能详细地说明这个功能的使用场景。
  18. validations:
  19. required: true
  20. - type: textarea
  21. id: api
  22. attributes:
  23. label: 你期望的 API 是什么样子的?
  24. description: 描述一下这个新功能的 API,并提供一些代码示例。
  25. placeholder: |
  26. ```xml
  27. <wd-interesting some-prop="xxx" />
  28. ```
  29. validations:
  30. required: true