Add page links
This commit is contained in:
@@ -61,7 +61,11 @@ function stopTable(tableId: number) {
|
|||||||
<template #content>
|
<template #content>
|
||||||
<DataTable class="ATTables" style="" :exportable="false" :value="activeTables">
|
<DataTable class="ATTables" style="" :exportable="false" :value="activeTables">
|
||||||
<Column field="table_name" header="Table Name" />
|
<Column field="table_name" header="Table Name" />
|
||||||
<Column field="table_link" header="Table Link" />
|
<Column field="table_link" header="Table Link">
|
||||||
|
<template #body="slotProps">
|
||||||
|
<a :href="slotProps.data.table_link">{{slotProps.data.table_link}}</a>
|
||||||
|
</template>
|
||||||
|
</Column>
|
||||||
<Column header="Close">
|
<Column header="Close">
|
||||||
<template #body="slotProps">
|
<template #body="slotProps">
|
||||||
<Button label="Close" @click="stopTable(slotProps.data.id)"/>
|
<Button label="Close" @click="stopTable(slotProps.data.id)"/>
|
||||||
|
|||||||
Reference in New Issue
Block a user