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 06f7225 commit dd239e0Copy full SHA for dd239e0
src/.vuepress/theme/components/ShareLinks.vue
@@ -3,7 +3,10 @@
3
<span class="toc-title">
4
{{ $themeLocaleConfig.shareLinksText }}
5
</span>
6
- <ul class="toc-list">
+ <ul
7
+ class="toc-list"
8
+ :class="{ 'horizontal': horizontal }"
9
+ >
10
<li
11
v-for="(item, index) in shareLinks"
12
:key="`share-item-${index}`"
@@ -40,6 +43,10 @@ export default {
40
43
summary: {
41
44
type: String,
42
45
default: ''
46
+ },
47
+
48
+ horizontal: {
49
+ type: Boolean
50
}
51
},
52
0 commit comments