Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/sale/payment-pay/components/src/payment-system/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/sale/payment-pay/components/src/payment-system/reset-panel.js

import { BitrixVue } from 'ui.vue';
import { MixinResetPanel } from 'sale.payment-pay.mixins.payment-system';

import './button'

BitrixVue.component('sale-payment_pay-components-payment_system-reset_panel', {
	mixins:[MixinResetPanel],
	computed:
	{
		localize()
		{
			return Object.freeze(
				BitrixVue.getFilteredPhrases('PAYMENT_PAY_PAYMENT_SYSTEM_COMPONENTS_'))
		},
	},
	// language=Vue
	template: `
		<div class="order-payment-buttons-container">
			<div class="order-basket-section-description py-3">
				{{ localize.PAYMENT_PAY_PAYMENT_SYSTEM_COMPONENTS_6 }}
			</div>
			<div class="order-basket-section-another-payment-button">
				<sale-payment_pay-components-payment_system-button @click="reset()">
					{{ localize.PAYMENT_PAY_PAYMENT_SYSTEM_COMPONENTS_7 }}
				</sale-payment_pay-components-payment_system-button>
			</div>
		</div>	
	`,
});