Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/sale/checkout/view/element/button/src/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/sale/checkout/view/element/button/src/plus.js

import { BitrixVue } from 'ui.vue';
import { EventEmitter } from 'main.core.events'
import { EventType } from 'sale.checkout.const';

BitrixVue.component('sale-checkout-view-element-button-plus', {
	props: ['index'],
	methods:
	{
		plus()
		{
			EventEmitter.emit(EventType.basket.buttonPlusProduct, {index: this.index});
		}
	},
	// language=Vue
	template: `
		<div class="checkout-item-quantity-btn-plus no-select" @click="plus"/>
	`
});