mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
16 lines
268 B
Vue
16 lines
268 B
Vue
<!-- (C) 2022 - ntop.org -->
|
|
<script>
|
|
import { h, ref } from 'vue';
|
|
|
|
export default {
|
|
props: ['content'],
|
|
watch: {
|
|
"content": function(val, oldVal) {
|
|
// this.$forceUpdate();
|
|
}
|
|
},
|
|
render() {
|
|
return h(this.$props.content);
|
|
}
|
|
};
|
|
</script>
|