File tree 2 files changed +2
-2
lines changed
src/client/theme-default/components
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ function toggle() {
41
41
:role =" collapsible ? 'button' : undefined"
42
42
@click =" toggle"
43
43
>
44
- <h2 class =" title-text" >{{ text }} </h2 >
44
+ <h2 v-html = " text " class =" title-text" ></h2 >
45
45
<div class =" action" >
46
46
<VPIconMinusSquare class =" icon minus" />
47
47
<VPIconPlusSquare class =" icon plus" />
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ const closeSideBar = inject('close-sidebar') as () => void
25
25
:href =" item.link"
26
26
@click =" closeSideBar"
27
27
>
28
- <span class =" link-text" :class =" { light: depth > 1 }" >{{ item.text }} </span >
28
+ <span v-html = " item.text " class =" link-text" :class =" { light: depth > 1 }" ></span >
29
29
</VPLink >
30
30
<template
31
31
v-if =" ' items' in item && depth < maxDepth "
You can’t perform that action at this time.
0 commit comments