mirror of
https://github.com/BewlyBewly/BewlyBewly.git
synced 2025-04-14 13:15:29 +00:00
25 lines
405 B
Vue
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>
|