This repository has been archived on 2024-06-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
SolarAgent/src/views/settings.vue
2024-04-04 22:36:04 +08:00

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>