Each plugin can inject its own prompts during the project creation process irrespective of preset declarations using prompts: true setting
For example, user can pick their own ESLint config using the below configuration
{
"plugins": {
"@vue/cli-plugin-eslint": {
// let the users pick their own ESLint config
"prompts": true
}
}
}