mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-18 18:54:07 +00:00
invoices, members, reports, settings, customer portal, modules, installation 82 files, 14293 lines. Completes all feature modules: - payments: CRUD with send/preview, payment modes - expenses: CRUD with receipt upload, categories - recurring-invoices: full frequency logic, limit by date/count - members: list with roles, invite modal, pending invitations - reports: sales, profit/loss, expenses, tax with date ranges - settings: 14 settings views, number customizer, mail config - customer-portal: consolidated store, 8 views, portal layout - modules: marketplace index, detail/install, module cards - installation: 8-step wizard with requirements/db/mail/account Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
266 B
Vue
13 lines
266 B
Vue
<script setup lang="ts">
|
|
/**
|
|
* Re-export of the base PaidStatusBadge component.
|
|
* Use this import path within the payments feature for convenience.
|
|
*/
|
|
</script>
|
|
|
|
<template>
|
|
<BasePaidStatusBadge v-bind="$attrs">
|
|
<slot />
|
|
</BasePaidStatusBadge>
|
|
</template>
|