| 12345678910111213141516171819 |
- # app/pages/Cart/index.coffee
- module.exports = {
- props:
- domainSettings:
- type: Object
- default: -> {}
- language:
- type: String
- default: 'ru'
- data: ->
- {
- pageTitle: 'Корзина'
- }
- render: (new Function '_ctx', '_cache', globalThis.renderFns['app/pages/Cart/index.pug'])()
- }
|