jcloude/dashboard/src/components/AlertBudgetThreshold.vue
2025-12-23 19:17:16 +08:00

25 lines
540 B
Vue

<template>
<AlertBanner :title="budgetAlertMessage" type="warning"> </AlertBanner>
</template>
<script>
import AlertBanner from './AlertBanner.vue';
export default {
name: 'AlertBudgetThreshold',
components: { AlertBanner },
props: {
amount: {
type: Number,
required: true,
},
currency: {
type: String,
},
},
computed: {
budgetAlertMessage() {
return `Budget Alert: Your Frappe Cloud cost has exceeded the monthly budget alert threshold by <strong>${this.currency}${this.amount}</strong>`;
},
},
};
</script>