fix: remove i18n warning

This commit is contained in:
puriphatt 2024-04-10 23:14:42 +07:00
parent 0712ccba1e
commit 2e28c00551
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ defineProps<{
<q-inner-loading :showing="visibility" class="loader q-gutter-y-xl">
<q-spinner size="80px" color="primary" />
<span class="text-h5 text-weight-bold text-primary">
{{ $t('loading') }}
{{ 'loading' }}
</span>
</q-inner-loading>
</template>

View file

@ -38,7 +38,7 @@ const color = ['pink', 'purple'];
<div class="column justify-around stat-card-content">
<div class="col-4 text-h5 text-weight-bold">{{ v.amount }}</div>
<div class="text-weight-bold">{{ $t(v.label) }}</div>
<div class="text-weight-bold">{{ v.label }}</div>
</div>
</AppBox>
</div>