Files
BewlyBewly/src/components/Loading.vue
2023-01-19 03:18:44 +08:00

25 lines
405 B
Vue

<script setup lang="ts">
import browser from 'webextension-polyfill'
const imgURL = browser.runtime.getURL('/assets/loading.gif')
</script>
<template>
<div
w="full"
h="46px"
p="y-8"
flex="~"
justify="center"
items="center"
>
<img
:src="imgURL"
alt="loading"
w="46px"
h="46px"
m="r-2"
>
{{ $t('common.loading') }}
</div>
</template>