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/button.js

import { BitrixVue } from 'ui.vue';
import { MixinButtonWait } from 'sale.checkout.view.mixins';

BitrixVue.component('sale-checkout-view-element-button-shipping-button', {
	props: ['url'],
	mixins:[MixinButtonWait],
	methods:
	{
		clickAction()
		{
			this.setWait();
			document.location.href = this.url
		}
	},
	// language=Vue
	template: `
      <div class="checkout-order-status-btn-container" @click="clickAction">
      	<button :class="getObjectClass">
          <slot name="button-title"/>
		</button>
      </div>
	`
});