File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313 <AppActionButton
1414 v-if =" snippetStore.currentLanguage === 'markdown'"
1515 v-tooltip =" i18n.t('menu:markdown.presentationMode')"
16+ tabindex =" -1"
1617 @click =" onClickPresentationMode"
1718 >
1819 <UniconsMeetingBoard />
2425 ? i18n.t('menu:editor.previewMarkdown')
2526 : i18n.t('hide') + ' ' + i18n.t('menu:editor.previewMarkdown')
2627 "
28+ tabindex =" -1"
2729 @click =" onClickMarkdownPreview"
2830 >
2931 <UniconsEye v-if =" !snippetStore.isMarkdownPreview" />
3537 ? i18n.t('menu:editor.previewScreenshot')
3638 : i18n.t('hide') + ' ' + i18n.t('menu:editor.previewScreenshot')
3739 "
40+ tabindex =" -1"
3841 @click =" onClickScreenshotPreview"
3942 >
4043 <UniconsCamera v-if =" !snippetStore.isScreenshotPreview" />
4649 ? i18n.t('menu:editor.previewCode')
4750 : i18n.t('hide') + ' ' + i18n.t('menu:editor.previewCode')
4851 "
52+ tabindex =" -1"
4953 @click =" onCodePreview"
5054 >
5155 <SvgArrowSlash v-if =" snippetStore.isCodePreview" />
5256 <UniconsArrow v-else />
5357 </AppActionButton >
5458 <AppActionButton
5559 v-tooltip =" i18n.t('addDescription')"
60+ tabindex =" -1"
5661 @click =" onAddDescription"
5762 >
5863 <UniconsText />
5964 </AppActionButton >
6065 <AppActionButton
6166 v-tooltip =" i18n.t('newFragment')"
67+ tabindex =" -1"
6268 @click =" onAddNewFragment"
6369 >
6470 <UniconsPlus />
7682</template >
7783
7884<script setup lang="ts">
79- import {
80- onAddNewFragment ,
81- onAddDescription ,
82- onCopySnippet ,
83- emitter
84- } from ' @/composable'
85+ import { onAddNewFragment , onAddDescription , emitter } from ' @/composable'
8586import { useSnippetStore } from ' @/store/snippets'
8687import { useDebounceFn } from ' @vueuse/core'
8788import { computed , onUnmounted , ref } from ' vue'
Original file line number Diff line number Diff line change 22 <div class =" input-tags" >
33 <VueTagsInput
44 v-model =" tag"
5+ tabindex =" -1"
56 :autocomplete-items =" tags"
67 :tags =" localValue"
78 :placeholder =" i18n.t('addTag')"
You can’t perform that action at this time.
0 commit comments