We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa8ae47 commit 3bf5bb5Copy full SHA for 3bf5bb5
src/ecosystem/themes/ThemeListItem.vue
@@ -3,11 +3,9 @@ import { computed } from 'vue'
3
import { VTLink } from '@vue/theme'
4
import ThemeProduct from './ThemeProduct.vue'
5
6
-const props = defineProps({
7
- provider: { type: Object, required: true }
8
-})
9
-
10
-const regex = /\[([^\[]+)\](\(.*\))/gm
+const props = defineProps<{
+ provider: Record<string, any>
+}>()
11
12
const description = computed(() => {
13
// replace markdown link to html tag.
src/ecosystem/themes/ThemeProduct.vue
@@ -1,9 +1,9 @@
1
<script setup lang="ts">
2
- product: { type: Object, required: true }
+ product: Record<string, any>
</script>
<template>
0 commit comments