14 lines
391 B
JavaScript
Executable File
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
|