index.coffee 328 B

12345678910111213141516171819
  1. # app/pages/Cart/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/Cart/index.pug'])()
  15. }