Skip to content

Commit

Permalink
按钮title
Browse files Browse the repository at this point in the history
  • Loading branch information
fgt1t5y committed Oct 13, 2024
1 parent b847b5c commit bb73e83
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/editor/EditorFloatMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
class="EditorFloatMenu"
:style="{ left: `${left}px`, bottom: `${bottom}px` }"
>
<button :disabled="!displayHref.length" @click="openURL(displayHref)">
<button title="打开链接" :disabled="!displayHref.length" @click="openURL(displayHref)">
<i class="i i-open-in-new"></i>
</button>
<InputText v-model="displayHref" ref="hrefInputRef" size="small" />
<button @click="onUpdateLinkClick(displayHref)">
<button title="确认修改" @click="onUpdateLinkClick(displayHref)">
<i class="i i-check"></i>
</button>
<button @click="onUnlinkClick()">
<button title="取消超链接" @click="onUnlinkClick()">
<i class="i i-link-off"></i>
</button>
</div>
Expand Down

0 comments on commit bb73e83

Please sign in to comment.