mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
13 lines
392 B
Vue
13 lines
392 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('Your functionality is restricted. Please review your billing settings.') }}
|
|
</router-link>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'RestrictionWarningBar',
|
|
}
|
|
</script>
|