Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/sale/checkout/view/mixins/src/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/sale/checkout/view/mixins/src/product-item-edit.js

export default {
	computed:
		{
			getSrc()
			{
				return encodeURI(this.item.product.picture)
			}
		},
	methods:
		{
			hasSkyTree()
			{
				let tree = this.item.sku.tree.SELECTED_VALUES ?? {};
				return Object.keys(tree).length > 0;
			},
			hasProps()
			{
				return this.item.props.length > 0;
			}
		},
};