mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
13 lines
348 B
Vue
13 lines
348 B
Vue
<template>
|
|
<div v-if="$store.getters.isLimitedUser" class="bg-red-500 py-1 text-center">
|
|
<router-link :to="{ name: 'Billing' }" class="text-xs font-bold text-white">
|
|
{{ $t('restricted_account_warning') }}
|
|
</router-link>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'RestrictionWarningBar',
|
|
}
|
|
</script>
|