index.coffee 348 B

123456789101112131415161718
  1. # app/pages/Catalog/index.coffee
  2. module.exports = {
  3. props:
  4. domainSettings:
  5. type: Object
  6. default: -> {}
  7. language:
  8. type: String
  9. default: 'ru'
  10. data: ->
  11. {
  12. pageTitle: 'Каталог товаров'
  13. }
  14. render: (new Function '_ctx', '_cache', globalThis.renderFns['app/pages/Catalog/index.pug'])()
  15. }