Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
convert ConditionalNuxtLink.vue to typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
ToBinio committed Nov 19, 2023
1 parent f6eff09 commit a99ec10
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions lib/components/base/ConditionalNuxtLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,6 @@
</span>
</template>

<script setup>
defineProps({
to: {
type: String,
required: true,
},
isLink: {
type: Boolean,
required: true,
},
})
<script setup lang="ts">
defineProps<{ to: string; isLink: false }>()
</script>

0 comments on commit a99ec10

Please sign in to comment.