@vue/cli
Version:
Command line interface for rapid Vue.js development
25 lines (23 loc) • 466 B
JavaScript
module.exports = cli => {
cli.injectPrompt({
name: 'vueVersion',
message: 'Choose a version of Vue.js that you want to start the project with',
type: 'list',
choices: [
{
name: '3.x',
value: '3'
},
{
name: '2.x',
value: '2'
}
],
default: '3'
})
cli.onPromptComplete((answers, options) => {
if (answers.vueVersion) {
options.vueVersion = answers.vueVersion
}
})
}