Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

plopfile.js 495 B

il y a 1 an
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. }