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 d5a886d commit 999dc83Copy full SHA for 999dc83
docs/.vuepress/theme/drawer/DrawerSearchResult.vue
@@ -2,10 +2,7 @@
2
<section v-if="data.length" class="drawer-main__search-results">
3
<template v-for="(item, index) in visibleResults" :key="item.objectID || index">
4
<div class="search-result" @click="gotTo(parseUrl(item.url))">
5
- <div
6
- class="search-result__title"
7
- v-html="highlightMatchingWords(getTitleForArticle(item.title), modelValue)"
8
- ></div>
+ <a :href="item.url" class="search-result__title" v-html="highlightMatchingWords(getTitleForArticle(item.title), modelValue)"></a>
9
<div
10
class="search-result__breadcrumb"
11
v-html="highlightMatchingWords(getBreadcrumbsForArticle(item.title), modelValue)"
0 commit comments