Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/sale/checkout/view/product/src/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/sale/checkout/view/product/src/price-measure.js

import { BitrixVue } from 'ui.vue';
import { CurrencyCore } from 'currency.currency-core';

BitrixVue.component('sale-checkout-view-product-price_measure', {
	props: ['item'],
	computed:
		{
			priceFormatted()
			{
				return CurrencyCore.currencyFormat(this.item.price, this.item.currency, true);
			}
		},
	// language=Vue
	template: `
		<span class="checkout-item-quantity-description">
			<span class="checkout-item-quantity-description-text">
				<div v-html="priceFormatted + '/' + item.measureText"/>
			</span>
			<span class="checkout-item-quantity-description-price"/>
		</span>
	`
});