diff --git a/src/components/common/VnCard.vue b/src/components/common/VnCard.vue index 93b6c2f064..f6ecc25ab2 100644 --- a/src/components/common/VnCard.vue +++ b/src/components/common/VnCard.vue @@ -21,6 +21,7 @@ const props = defineProps({ searchbarUrl: { type: String, default: undefined }, searchbarLabel: { type: String, default: '' }, searchbarInfo: { type: String, default: '' }, + customRouteRedirectName: { type: String, default: undefined }, }); const { t } = useI18n(); @@ -58,6 +59,7 @@ if (props.baseUrl) { :url="props.searchbarUrl" :label="t(props.searchbarLabel)" :info="t(props.searchbarInfo)" + :custom-route-redirect-name="props.customRouteRedirectName" />