/
vdele
/
app
Обзор
Документация
Войти
/
vdele
/
app
Код
Вики
Пакеты
0
Релизы
1
Аналитика
dev
src/components/common/buttons/PriceButton.ts
16 строк
444 B
Vasilii Polshakov
last fixes for 0.0.1-alpha
02 апр 2025, 12:32
02 апр 2025, 12:32
ef3d4ef
Код
Авторство
О чём код?
import { defineComponent, h } from 'vue'; import { BaseButton } from '@/components/common/buttons/BaseButton'; import { formatPrice } from '@/utils/index'; export const PriceButton = defineComponent({ name: 'PriceButton', render() { return h( BaseButton, { class: ['btn-secondary'], innerText: formatPrice(Number(this.$attrs['value'])) } ); }, });