5e940e58cb
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe> closes https://github.com/elk-zone/elk/issues/1042
15 lines
285 B
Vue
15 lines
285 B
Vue
<script setup lang="ts">
|
|
const online = useOnline()
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
v-if="!online"
|
|
w-full min-h-30px px4 py3 text-primary bg-base
|
|
border="t base" flex="~ gap-2 center"
|
|
>
|
|
<div i-ri:wifi-off-line />
|
|
{{ $t('common.offline_desc') }}
|
|
</div>
|
|
</template>
|