PriceDisplay
DomainIntl.NumberFormat ile para birimi formatlama. Boyut, locale ve üstü çizili seçenekleri destekler.
₺1.299,99
₺1.299,99
₺1.299,99
₺1.299,99
₺2.499,00
₺1.799,00
$89.99
74,99 €
<%
var _amount = locals.amount || 0;
var _currency = locals.currency || 'TRY';
var _locale = locals.locale || 'tr-TR';
var _size = locals.size || 'md';
var _strike = locals.strikethrough || false;
var sizeClass = {
sm: 'text-sm',
md: 'text-base',
lg: 'text-xl font-semibold',
xl: 'text-3xl font-bold',
}[_size] || 'text-base';
%>
<%= _amount.toLocaleString(_locale, { style: 'currency', currency: _currency, minimumFractionDigits: 2, maximumFractionDigits: 2 }) %>