Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 1 rokem
1234567891011
  1. const viewGenerator = require('./plop-templates/view/prompt')
  2. const componentGenerator = require('./plop-templates/component/prompt')
  3. const storeGenerator = require('./plop-templates/store/prompt.js')
  4. const tableGenerator = require('./plop-templates/table/prompt.js')
  5. module.exports = function(plop) {
  6. plop.setGenerator('view', viewGenerator)
  7. plop.setGenerator('component', componentGenerator)
  8. plop.setGenerator('store', storeGenerator)
  9. plop.setGenerator('tablepage', tableGenerator)
  10. }