Sha256: 5bce6d6f8c744fa7302b67515a9536aeedd7e036d78d13cb2625e9bd207e4663
Contents?: true
Size: 1.14 KB
Versions: 17
Compression:
Stored size: 1.14 KB
Contents
<template> <div> <dropdown placement="bottom" ref="dropdown" class="h-full flex"> <template v-slot:button> <button class="h-full w-full px-6 hover:bg-editor-primary hover:bg-opacity-5 transition-colors duration-200 flex items-center focus:outline-none focus:none" > <span>{{ $t('headerNav.previewToggler.button') }}</span> <icon name="arrow-down-s-line" /> </button> </template> <template v-slot:content> <div class="w-48 flex flex-col"> <a class="preview-link" target="_blank" :href="currentPage.previewUrl" >{{ $t('headerNav.previewToggler.draftLink') }}</a > <a class="preview-link" target="_blank" :href="currentPage.liveUrl">{{ $t('headerNav.previewToggler.liveLink') }}</a> </div> </template> </dropdown> </div> </template> <script> export default { name: 'PreviewToggler', computed: {}, } </script> <style scoped> .preview-link { @apply px-4 py-4 hover:bg-gray-100 transition-colors duration-200 focus:outline-none cursor-pointer; } </style>
Version data entries
17 entries across 17 versions & 1 rubygems