This commit is contained in:
Andrea Vos 2025-01-31 22:04:35 +01:00
parent 9340b4fb8e
commit 09e0fa9f2d
2 changed files with 10 additions and 6 deletions

View File

@ -8,7 +8,7 @@
</div>
<div class="list-group-item small p-2">
<input v-model="link" class="form-control form-control-sm mb-2" readonly disabled>
<Share :url="url"/>
<Share :url="url" />
</div>
<div class="list-group-item small p-3">
<h6>

View File

@ -14,10 +14,14 @@ const props = defineProps<{
<Icon v="share" />
<T>share</T><T>quotation.colon</T>
</p>
<AvrisVueShare :title="props.title" :url="props.url" :translations="{
share: $t('share'),
clipboard: $t('crud.copy'),
logo: (network: string) => `${network} logo`,
}" />
<AvrisVueShare
:title="props.title"
:url="props.url"
:translations="{
share: $t('share'),
clipboard: $t('crud.copy'),
logo: (network: string) => `${network} logo`,
}"
/>
</div>
</template>