added prettier

This commit is contained in:
Čarodej
2022-02-01 12:21:38 +01:00
parent 5ae875233b
commit b38b532cbe
284 changed files with 25410 additions and 25338 deletions

View File

@@ -1,39 +1,39 @@
<template>
<div v-if="! hasSubscription" class="card shadow-card">
<FormLabel>
{{ $t('Subscription') }}
</FormLabel>
<div v-if="!hasSubscription" class="card shadow-card">
<FormLabel>
{{ $t('Subscription') }}
</FormLabel>
<b class="sm:text-3xl text-2xl font-extrabold -mt-3 block mb-0.5">
{{ $t('Free Plan') }}
</b>
<b class="-mt-3 mb-0.5 block text-2xl font-extrabold sm:text-3xl">
{{ $t('Free Plan') }}
</b>
<b class="mb-3 block text-sm text-gray-400 mb-8">
{{ $t('1GB Free storage space with 5 Team members') }}
</b>
<b class="mb-3 mb-8 block text-sm text-gray-400">
{{ $t('1GB Free storage space with 5 Team members') }}
</b>
<ButtonBase @click.native="$openUpgradeOptions" type="submit" button-style="theme" class="w-full mt-4">
{{ $t('Upgrade Your Account') }}
</ButtonBase>
</div>
<ButtonBase @click.native="$openUpgradeOptions" type="submit" button-style="theme" class="mt-4 w-full">
{{ $t('Upgrade Your Account') }}
</ButtonBase>
</div>
</template>
<script>
import InfoBox from "../Others/Forms/InfoBox";
import FormLabel from "../Others/Forms/FormLabel"
import ButtonBase from "../FilesView/ButtonBase"
import InfoBox from '../Others/Forms/InfoBox'
import FormLabel from '../Others/Forms/FormLabel'
import ButtonBase from '../FilesView/ButtonBase'
export default {
name: 'UserEmptySubscription',
components: {
ButtonBase,
FormLabel,
InfoBox,
},
computed: {
hasSubscription() {
return this.$store.getters.user.data.relationships.subscription
},
},
}
</script>
export default {
name: 'UserEmptySubscription',
components: {
ButtonBase,
FormLabel,
InfoBox,
},
computed: {
hasSubscription() {
return this.$store.getters.user.data.relationships.subscription
},
},
}
</script>