Files
online.tbbank.gov.tm-larave…/nova/resources/js/components/LicenseWarning.vue
2024-09-01 18:54:23 +05:00

18 lines
337 B
Vue

<template>
<a
href="https://nova.laravel.com/licenses"
v-if="!validLicense"
class="inline-block text-red-500 text-xs font-bold mt-1 text-center uppercase"
>
{{ __(`Unregistered`) }}
</a>
</template>
<script>
import { mapGetters } from 'vuex'
export default {
computed: mapGetters(['validLicense']),
}
</script>