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

import { BitrixVue } from 'ui.vue';

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