File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed
src/layouts/components/TagsView Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -108,17 +108,21 @@ listenerRouteChange(() => {
108108
109109<template >
110110 <div class =" scroll-container" >
111- <el-icon class =" arrow left" @click =" scrollTo('left')" >
112- <ArrowLeft />
113- </el-icon >
111+ <el-tooltip content =" 向左滚动标签(超出最大宽度可点击)" >
112+ <el-icon class =" arrow left" @click =" scrollTo('left')" >
113+ <ArrowLeft />
114+ </el-icon >
115+ </el-tooltip >
114116 <el-scrollbar ref =" scrollbarRef" @wheel.passive =" wheelScroll" @scroll =" scroll" >
115117 <div ref =" scrollbarContentRef" class =" scrollbar-content" >
116118 <slot />
117119 </div >
118120 </el-scrollbar >
119- <el-icon class =" arrow right" @click =" scrollTo('right')" >
120- <ArrowRight />
121- </el-icon >
121+ <el-tooltip content =" 向右滚动标签(超出最大宽度可点击)" >
122+ <el-icon class =" arrow right" @click =" scrollTo('right')" >
123+ <ArrowRight />
124+ </el-icon >
125+ </el-tooltip >
122126 <Screenfull v-if =" settingsStore.showScreenfull" :content =" true" class =" screenfull" />
123127 </div >
124128</template >
You can’t perform that action at this time.
0 commit comments