mirror of
https://gitee.com/dcloud/uni-preset-vue
synced 2025-04-05 21:41:53 +08:00
44 lines
811 B
JavaScript
44 lines
811 B
JavaScript
module.exports = [{
|
|
type: 'list',
|
|
name: 'template',
|
|
message: '请选择 uni-app 模板',
|
|
choices: [{
|
|
name: '默认模板',
|
|
value: 'default'
|
|
},
|
|
{
|
|
name: 'Hello uni-app',
|
|
value: 'hello uni-app'
|
|
},
|
|
{
|
|
name: '登录模板',
|
|
value: 'hello uni-app'
|
|
},
|
|
{
|
|
name: '看图模板',
|
|
value: 'hello uni-app'
|
|
},
|
|
{
|
|
name: '自定义模板',
|
|
value: 'custom'
|
|
}
|
|
],
|
|
default: 'None',
|
|
},
|
|
{
|
|
when: answers => answers.template === 'custom',
|
|
type: 'input',
|
|
name: 'repo',
|
|
message: '请输入自定义 uni-app 模板地址',
|
|
filter(input) {
|
|
return new Promise(function(resolve, reject) {
|
|
if (input) {
|
|
resolve(input)
|
|
} else {
|
|
reject('uni-app 模板地址不能为空')
|
|
}
|
|
})
|
|
}
|
|
}
|
|
]
|