init component
This commit is contained in:
14
node_modules/buetify/lib/components/pricingTable/BPricingPlanPrice.js
generated
vendored
Executable file
14
node_modules/buetify/lib/components/pricingTable/BPricingPlanPrice.js
generated
vendored
Executable file
@@ -0,0 +1,14 @@
|
||||
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
|
||||
Reference in New Issue
Block a user