19 lines
572 B
JavaScript
19 lines
572 B
JavaScript
Vue.component('historic-bill', {
|
|
//language=Vue
|
|
template: `
|
|
<tt-card>
|
|
<tt-table-crud>
|
|
|
|
<template v-slot:invoice_number="{ row }">
|
|
<a :href="'/HistoricBillData/' + row.invoice_number + '.pdf'" target="_blank">{{ row.invoice_number }}</a>
|
|
</template>
|
|
|
|
</tt-table-crud>
|
|
</tt-card>
|
|
`, data() {
|
|
return {
|
|
window: window, historyModal: false, historyModalId: null,
|
|
}
|
|
},
|
|
})
|