2024-10-09 11:05:41 +00:00
|
|
|
<script setup>
|
2024-10-11 10:23:21 +00:00
|
|
|
import DynamicComponent from "./DynamicComponent.vue"
|
|
|
|
|
|
|
|
const props = defineProps(['service'])
|
|
|
|
let serviceComponent = 'nix-code-'+props.service
|
|
|
|
|
2024-10-09 11:05:41 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2024-10-11 10:23:21 +00:00
|
|
|
<dynamic-component :type="serviceComponent" />
|
2024-10-09 11:05:41 +00:00
|
|
|
</template>
|
2024-10-11 10:23:21 +00:00
|
|
|
|