mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-02 00:40:10 +00:00
11 lines
180 B
Vue
11 lines
180 B
Vue
<!-- (C) 2022 - ntop.org -->
|
|
<script>
|
|
import { h, ref } from 'vue';
|
|
|
|
export default {
|
|
props: ['content'],
|
|
render() {
|
|
return h(this.$props.content);
|
|
}
|
|
};
|
|
</script>
|