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