mirror of
https://github.com/tauri-apps/vue-cli-plugin-tauri.git
synced 2026-02-04 02:31:17 +01:00
17 lines
334 B
JavaScript
17 lines
334 B
JavaScript
module.exports = pkg => [
|
|
{
|
|
type: 'input',
|
|
name: 'appName',
|
|
message: 'What should the app name be?',
|
|
validate: input => !!input,
|
|
default: pkg.name
|
|
},
|
|
{
|
|
type: 'input',
|
|
name: 'windowTitle',
|
|
message: 'What should the window title be?',
|
|
validate: input => !!input,
|
|
default: 'Tauri App'
|
|
}
|
|
]
|