vue-element-plus-admin/plopfile.cjs
2024-06-01 17:12:17 +08:00

8 lines
256 B
JavaScript

const viewGenerator = require('./plop/view/prompt.cjs')
const componentGenerator = require('./plop/component/prompt.cjs')
module.exports = function (plop) {
plop.setGenerator('view', viewGenerator)
plop.setGenerator('component', componentGenerator)
}