我在vue-cli设置中看到类似这样的内容(meta.js)
user@ny-laptop ~/Documents/
> $ vue init webpack my-project
? Project name hi
? Project description how do i get this menu?
? Author (user <user@gmail.com>)
...etc
如何为新的webpack项目创建这样的基于菜单的配置?我有一个核心模板,有很多选项,能够提前选择会非常有帮助。
感谢
答案 0 :(得分:1)
您可以通过向meta.js
添加属性来实现。
Fork https://github.com/vuejs-templates/webpack
重要提示:确保您在 master
分支并提交。
meta.js
file,添加属性。weather
问题:commit here. 现在使用vue init
示例:
vue init acdcjunior/webpack-vue-template my-project-from-my-template
示例输出(注意第二个问题):
$ vue init acdcjunior/webpack-vue-template my-project-from-my-template
? Project name my-project-from-my-template
? How's the weather today? Very nice, thanks.
? Project description A Vue.js project template by acdcjunior
...
创建的属性可以在模板中使用:
/template
folder。这适用于Vue-cli v2.x。