1 Star 5 Fork 0

Awed/aw-ui-vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
plopfile.js 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
Awed 提交于 2023-02-21 16:10 . Button.md
module.exports = (plop) => {
// 创建生成器
plop.setGenerator('component', {
// 生成器描述
description: 'create a component for aw-ui',
// 询问
prompts: [
// 组件名称
{
type: 'input',
name: 'name',
message: 'component name',
default: 'component'
}
],
// 把基于模板创建的文件,放到指定的目录
actions: [
{
type: 'add',
path: 'components/lib/{{kebabCase name}}/index.js',
templateFile: 'template/components/index.hbs'
},
{
type: 'add',
path: 'components/lib/{{kebabCase name}}/src/main.vue',
templateFile: 'template/components/src/main.hbs'
},
{
type: 'add',
path: 'components/css/{{kebabCase name}}.scss',
templateFile: 'template/components/css/index.hbs'
},
{
type: 'add',
path: 'docs/componentDocs/{{kebabCase name}}.md',
templateFile: 'template/docs/componentDocs/index.hbs'
}
]
})
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hbowen/aw-ui-vue.git
git@gitee.com:hbowen/aw-ui-vue.git
hbowen
aw-ui-vue
aw-ui-vue
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385