mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-17 15:52:15 +00:00
23 lines
483 B
Vue
23 lines
483 B
Vue
<template>
|
|
<div v-if="! hasSubscription" class="card shadow-card">
|
|
<InfoBox style="margin-bottom: 0">
|
|
<p>{{ $t("You don't have any subscription") }}</p>
|
|
</InfoBox>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import InfoBox from '/resources/js/components/Others/Forms/InfoBox'
|
|
|
|
export default {
|
|
name: 'UserEmptySubscription',
|
|
components: {
|
|
InfoBox
|
|
},
|
|
computed: {
|
|
hasSubscription() {
|
|
return this.$store.getters.user.data.relationships.subscription
|
|
},
|
|
},
|
|
}
|
|
</script> |