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/checkout-disabled.js

import { BitrixVue } from 'ui.vue';

BitrixVue.component('sale-checkout-view-element-button-checkout_disabled', {
	props: ['title'],
	computed:
		{
			getObjectClass()
			{
				const classes = [
					'btn',
					'btn-primary',
					'product-item-detail-buy-button',
					'btn-lg',
					'rounded-pill'
				];
				return classes;
			}
		},
	// language=Vue
	template: `
		<div class="checkout-btn-container">
			<button :disabled="true" :class="getObjectClass" >{{title}}</button>
		</div>
	`
});