fix: navigating once an article is open

This commit is contained in:
Shivam Mishra
2026-06-10 14:33:35 +05:30
parent c9f6fb202c
commit f926f5e500
2 changed files with 12 additions and 2 deletions
@@ -11,6 +11,11 @@ export default {
<template>
<div class="bg-white h-full">
<IframeLoader :url="$route.query.link" />
<!--
Key by fullPath (not just the link) so the iframe remounts on every
navigation here, including re-opening the same article via the SDK after
the iframe was browsed to another help-center page. See App.vue#openArticle.
-->
<IframeLoader :key="$route.fullPath" :url="$route.query.link" />
</div>
</template>