From 21d55d425122b5eeff7da7e436b12b5404f66ea8 Mon Sep 17 00:00:00 2001 From: Ray Date: Sat, 22 Jun 2024 13:57:29 +0800 Subject: [PATCH] chore: add feature request template --- .github/ISSUE_TEMPLATE/feature_request.yml | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000000..e9aa069b14 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,35 @@ +name: "\U0001F680 New feature proposal" +description: Suggest an idea for this project +labels: ["feature request"] +body: + - type: markdown + attributes: + value: | + **Before You Start...** + + This form is only for submitting feature requests. If you have a usage question + or are unsure if this is really a bug, make sure to: + + - Ask on [Discord Chat](https://chat.vuejs.org/) + - Ask on [GitHub Discussions](https://github.com/vuejs/language-tools/discussions) + + Also try to search for your issue - another user may have already requested something similar! + + - type: textarea + id: problem-description + attributes: + label: What problem does this feature solve? + description: | + Explain your use case, context, and rationale behind this feature request. More importantly, what is the **end user experience** you are trying to build that led to the need for this feature? + placeholder: Problem description + validations: + required: true + - type: textarea + id: proposed-solution + attributes: + label: What does the proposed solution look like? + description: | + Describe how you propose to solve the problem. + placeholder: Proposed solution + validations: + required: true