1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
| const toUpperCase = (str) => str.charAt(0).toUpperCase() + str.slice(1)
|
| module.exports = {
| description: 'Create vue component',
| prompts: [
| {
| type: 'input',
| name: 'name',
| message: '请输入组件名称(Please enter the component name)'
| }
| ],
| actions: (data) => {
| const { name } = data
| const upperFirstName = toUpperCase(name)
|
| const actions = []
| if (name) {
| actions.push({
| type: 'add',
| path: `./src/components/${upperFirstName}/src/${upperFirstName}.vue`,
| templateFile: './plop/component/component.hbs',
| data: {
| name,
| upperFirstName
| }
| }, {
| type: 'add',
| path: `./src/components/${upperFirstName}/index.ts`,
| templateFile: './plop/component/index.hbs',
| data: {
| upperFirstName
| }
| })
| }
|
| return actions
| }
| }
|
|