1 Star 0 Fork 0

残海清风/vue3

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
gruntfile.js 367 Bytes
一键复制 编辑 原始数据 按行查看 历史
残海清风 提交于 2022-08-09 11:51 . init nuxt
module.exports = grunt => {
grunt.initConfig({
foo: {
bar: 123
}
})
grunt.registerTask('hello', function() {
console.log('hello')
})
grunt.registerTask('world', function() {
const done = this.async()
setTimeout(() => {
console.log('world')
done()
}, 1000)
})
grunt.registerTask('default', ['hello', 'world'])
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Alic_Zhu/vue3.git
git@gitee.com:Alic_Zhu/vue3.git
Alic_Zhu
vue3
vue3
master

搜索帮助