This commit is contained in:
Karel Vendla
2021-04-19 13:23:59 +03:00
parent 2e57464679
commit eb85ab4e1b
12 changed files with 179 additions and 7 deletions

View File

@ -2,7 +2,7 @@
<div>
<div class="row">
<div class="col-12 mb-4 pr-0 d-flex justify-content-between">
<h4 class="mb-0">Invoices</h4>
<h4 class="mb-0">{{ $t('title') }}</h4>
<div>
<button class="btn btn-sm btn-outline-dark" @click="createNewInvoice">New invoice</button>
<b-dropdown variant="link" size="sm" no-caret right>
@ -30,6 +30,7 @@ import InvoicesList from '@/components/invoices/InvoicesList';
export default {
name: 'invoices',
i18nOptions: { namespaces: 'invoices' },
components: {
InvoicesList,
BDropdown,