| 1234567891011121314151617181920212223242526 |
- # app/components/Domain/ProductGrid/index.coffee
- # Импорт компонентов
- module.exports =
- name: 'product-grid'
- components: {
- 'product-card': require 'app/components/Domain/ProductCard/index.coffee'
- }
- props:
- products:
- type: Array
- default: -> []
- loading:
- type: Boolean
- default: false
- methods:
- productClick: (productId) ->
- @$emit 'product-click', productId
- render: (new Function '_ctx', '_cache', globalThis.renderFns['app/components/Domain/ProductGrid/index.pug'])()
|