generated from pascalmartineau/wp-skeleton
13 lines
226 B
Vue
13 lines
226 B
Vue
<script setup lang="ts">
|
|
defineProps<{ showLabels: boolean }>();
|
|
</script>
|
|
|
|
<template>
|
|
<UButton
|
|
icon="i-lucide-user"
|
|
color="primary"
|
|
to="#"
|
|
:label="showLabels ? 'Devenir membre' : undefined"
|
|
/>
|
|
</template>
|