├── .gitignore ├── LICENSE ├── index.html ├── netlify.toml ├── package.json ├── pnpm-lock.yaml ├── public └── favicon.ico ├── src ├── assets │ └── images │ │ └── logo.png ├── components │ ├── App.vue │ ├── AppHeader.vue │ ├── BugReport.vue │ ├── FeatureRequest.vue │ └── FormIntro.vue ├── config │ ├── index.js │ └── repos.js ├── helpers │ ├── generate.js │ ├── index.js │ └── query.js ├── i18n │ ├── locales │ │ ├── en │ │ │ ├── cli-envinfo-subtitle.md │ │ │ ├── cli-repro-subtitle-links.md │ │ │ ├── index.js │ │ │ ├── intro-modal.md │ │ │ ├── intro.md │ │ │ ├── proposal-subtitle.md │ │ │ ├── rationale-subtitle.md │ │ │ ├── repro-modal.md │ │ │ ├── repro-subtitle-links.md │ │ │ ├── repro-subtitle.md │ │ │ ├── router-next-repro-subtitle-links.md │ │ │ ├── steps-subtitle.md │ │ │ └── vue-next-repro-subtitle-links.md │ │ ├── index.js │ │ └── zh-cn │ │ │ ├── cli-envinfo-subtitle.md │ │ │ ├── cli-repro-subtitle-links.md │ │ │ ├── index.js │ │ │ ├── intro-modal.md │ │ │ ├── intro.md │ │ │ ├── proposal-subtitle.md │ │ │ ├── rationale-subtitle.md │ │ │ ├── repro-modal.md │ │ │ ├── repro-subtitle-links.md │ │ │ ├── repro-subtitle.md │ │ │ ├── router-next-repro-subtitle-links.md │ │ │ ├── steps-subtitle.md │ │ │ └── vue-next-repro-subtitle-links.md │ └── plugin.js ├── main.js ├── mixins │ ├── check-modal.js │ └── github-search.js └── style │ ├── imports.styl │ └── vars.styl └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/index.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/components/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/components/App.vue -------------------------------------------------------------------------------- /src/components/AppHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/components/AppHeader.vue -------------------------------------------------------------------------------- /src/components/BugReport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/components/BugReport.vue -------------------------------------------------------------------------------- /src/components/FeatureRequest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/components/FeatureRequest.vue -------------------------------------------------------------------------------- /src/components/FormIntro.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/components/FormIntro.vue -------------------------------------------------------------------------------- /src/config/index.js: -------------------------------------------------------------------------------- 1 | export * from './repos' 2 | -------------------------------------------------------------------------------- /src/config/repos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/config/repos.js -------------------------------------------------------------------------------- /src/helpers/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/helpers/generate.js -------------------------------------------------------------------------------- /src/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/helpers/index.js -------------------------------------------------------------------------------- /src/helpers/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/helpers/query.js -------------------------------------------------------------------------------- /src/i18n/locales/en/cli-envinfo-subtitle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/en/cli-envinfo-subtitle.md -------------------------------------------------------------------------------- /src/i18n/locales/en/cli-repro-subtitle-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/en/cli-repro-subtitle-links.md -------------------------------------------------------------------------------- /src/i18n/locales/en/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/en/index.js -------------------------------------------------------------------------------- /src/i18n/locales/en/intro-modal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/en/intro-modal.md -------------------------------------------------------------------------------- /src/i18n/locales/en/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/en/intro.md -------------------------------------------------------------------------------- /src/i18n/locales/en/proposal-subtitle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/en/proposal-subtitle.md -------------------------------------------------------------------------------- /src/i18n/locales/en/rationale-subtitle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/en/rationale-subtitle.md -------------------------------------------------------------------------------- /src/i18n/locales/en/repro-modal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/en/repro-modal.md -------------------------------------------------------------------------------- /src/i18n/locales/en/repro-subtitle-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/en/repro-subtitle-links.md -------------------------------------------------------------------------------- /src/i18n/locales/en/repro-subtitle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/en/repro-subtitle.md -------------------------------------------------------------------------------- /src/i18n/locales/en/router-next-repro-subtitle-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/en/router-next-repro-subtitle-links.md -------------------------------------------------------------------------------- /src/i18n/locales/en/steps-subtitle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/en/steps-subtitle.md -------------------------------------------------------------------------------- /src/i18n/locales/en/vue-next-repro-subtitle-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/en/vue-next-repro-subtitle-links.md -------------------------------------------------------------------------------- /src/i18n/locales/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/index.js -------------------------------------------------------------------------------- /src/i18n/locales/zh-cn/cli-envinfo-subtitle.md: -------------------------------------------------------------------------------- 1 | 请使用终端命令行,在项目目录中运行以下命令: 2 | 3 | `vue info` 4 | 5 | 并将运行结果复制粘贴到上面的输入框中。 6 | -------------------------------------------------------------------------------- /src/i18n/locales/zh-cn/cli-repro-subtitle-links.md: -------------------------------------------------------------------------------- 1 | 请提供一个能够重现你的问题的 GitHub 仓库。 2 | -------------------------------------------------------------------------------- /src/i18n/locales/zh-cn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/zh-cn/index.js -------------------------------------------------------------------------------- /src/i18n/locales/zh-cn/intro-modal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/zh-cn/intro-modal.md -------------------------------------------------------------------------------- /src/i18n/locales/zh-cn/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/zh-cn/intro.md -------------------------------------------------------------------------------- /src/i18n/locales/zh-cn/proposal-subtitle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/zh-cn/proposal-subtitle.md -------------------------------------------------------------------------------- /src/i18n/locales/zh-cn/rationale-subtitle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/zh-cn/rationale-subtitle.md -------------------------------------------------------------------------------- /src/i18n/locales/zh-cn/repro-modal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/zh-cn/repro-modal.md -------------------------------------------------------------------------------- /src/i18n/locales/zh-cn/repro-subtitle-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/zh-cn/repro-subtitle-links.md -------------------------------------------------------------------------------- /src/i18n/locales/zh-cn/repro-subtitle.md: -------------------------------------------------------------------------------- 1 | [什么是*最小化重现*,为什么这是必需的?](#why-repro) 2 | 3 | 请不要乱填一个链接,那只会让你的 issue 被直接关闭。 4 | -------------------------------------------------------------------------------- /src/i18n/locales/zh-cn/router-next-repro-subtitle-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/zh-cn/router-next-repro-subtitle-links.md -------------------------------------------------------------------------------- /src/i18n/locales/zh-cn/steps-subtitle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/zh-cn/steps-subtitle.md -------------------------------------------------------------------------------- /src/i18n/locales/zh-cn/vue-next-repro-subtitle-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/locales/zh-cn/vue-next-repro-subtitle-links.md -------------------------------------------------------------------------------- /src/i18n/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/i18n/plugin.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/main.js -------------------------------------------------------------------------------- /src/mixins/check-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/mixins/check-modal.js -------------------------------------------------------------------------------- /src/mixins/github-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/mixins/github-search.js -------------------------------------------------------------------------------- /src/style/imports.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/src/style/imports.styl -------------------------------------------------------------------------------- /src/style/vars.styl: -------------------------------------------------------------------------------- 1 | $page-width = 900px 2 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vuejs/vue-issue-helper/HEAD/vite.config.js --------------------------------------------------------------------------------