refactor: reduce unnecessary html structures (#1319)
parent
5465409fcb
commit
1a074aaff6
|
@ -19,10 +19,8 @@ defineProps<{
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
<div flex-auto />
|
<div flex-auto />
|
||||||
<div flex items-center>
|
<div flex items-center>
|
||||||
<NuxtLink :to="getAccountRoute(account.moved as any)">
|
<NuxtLink :to="getAccountRoute(account.moved as any)" btn-solid inline-block h-fit>
|
||||||
<button btn-solid h-fit>
|
{{ $t('account.go_to_profile') }}
|
||||||
{{ $t('account.go_to_profile') }}
|
|
||||||
</button>
|
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
<script setup>
|
|
||||||
const disabled = computed(() => !isHydrated.value || !currentUser.value)
|
|
||||||
const disabledVisual = computed(() => isHydrated.value && !currentUser.value)
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<button
|
|
||||||
flex="~ gap2 center"
|
|
||||||
w-9 h-9 py2
|
|
||||||
xl="w-auto h-auto"
|
|
||||||
rounded-3
|
|
||||||
cursor-pointer disabled:pointer-events-none
|
|
||||||
text-primary
|
|
||||||
border-1 border-primary
|
|
||||||
:class="disabledVisual ? 'op25' : 'hover:bg-primary hover:text-inverted'"
|
|
||||||
:disabled="disabled"
|
|
||||||
@click="openPublishDialog()"
|
|
||||||
>
|
|
||||||
<div i-ri:quill-pen-line />
|
|
||||||
<span hidden xl:block>{{ $t('action.compose') }}</span>
|
|
||||||
</button>
|
|
||||||
</template>
|
|
Loading…
Reference in New Issue