17 lines
424 B
Vue
17 lines
424 B
Vue
<template>
|
|
<div class="flex flex-col gap-3">
|
|
<v-card prepend-icon="mdi-server" title="Host">
|
|
<template #text>
|
|
<p>You currently connected to</p>
|
|
<p class="text-lg"><b>Solar Networks</b></p>
|
|
<p>Didn't support editing now</p>
|
|
</template>
|
|
</v-card>
|
|
|
|
<Copyright />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Copyright from "@/components/common/Copyright.vue"
|
|
</script> |