Skip to content

Commit

Permalink
fix(ProseA): prop types mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
farnabaz committed Mar 19, 2024
1 parent 83b8ca5 commit 6acc231
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/runtime/components/prose/ProseA.vue
Expand Up @@ -8,13 +8,15 @@
</template>

<script setup lang="ts">
import type { PropType } from 'vue'
defineProps({
href: {
type: String,
default: ''
},
target: {
type: String,
type: String as PropType<'_blank' | '_parent' | '_self' | '_top' | (string & {}) | null | undefined>,
default: undefined,
required: false
}
Expand Down

0 comments on commit 6acc231

Please sign in to comment.