mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-03 01:10:10 +00:00
27 lines
606 B
Vue
27 lines
606 B
Vue
<template>
|
|
<table class="table table-hover table-borderless mb-0">
|
|
<thead>
|
|
<tr>
|
|
<th v-for="col in columns" scope="col" v-html="print_html_column(col)"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="row in rows">
|
|
<td v-for="col in columns" scope="col" v-html="print_html_row(col, row)"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, onMounted, computed, watch, onBeforeUnmount } from "vue";
|
|
|
|
const props = defineProps({
|
|
id: String,
|
|
columns: Array,
|
|
rows: Array,
|
|
print_html_column: Function,
|
|
print_html_row: Function,
|
|
});
|
|
|
|
</script>
|