Files
manolia-alpha/node_modules/buetify/lib/components/pricingTable/BPricingPlanPrice.js
Robin COuret e0e50af706 init component
2026-02-16 17:28:37 +01:00

14 lines
391 B
JavaScript
Executable File

import { h } from 'vue';
export default function BPricingPlanPrice(props, {
attrs,
slots
}) {
return h('div', { ...attrs,
class: 'plan-price'
}, [h('span', {
class: 'plan-price-amount'
}, [h('span', {
class: 'plan-price-currency'
}, slots.currency ? slots.currency() : '$'), `${props.amount}`]), `/${props.interval}`]);
}
//# sourceMappingURL=BPricingPlanPrice.js.map