mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 21:33:18 +01:00
12 lines
396 B
Vue
12 lines
396 B
Vue
<template>
|
|
<mdi:satellite-variant v-if="type == 'agent'" />
|
|
<ph:globe-simple v-else-if="type == 'remote'" />
|
|
<mdi:hexagon-multiple v-else-if="type == 'swarm'" />
|
|
<carbon:logo-kubernetes v-else-if="type == 'k8s'" />
|
|
<ph:computer-tower v-else />
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { Host } from "@/stores/hosts";
|
|
const { type } = defineProps<{ type: Host["type"] }>();
|
|
</script>
|