Move many things over from Knossos (and other rearrangements) (#102)

This commit is contained in:
Emma Alexia
2023-10-16 21:18:23 -04:00
committed by GitHub
parent 46a6fee81d
commit 8369330053
68 changed files with 852 additions and 342 deletions

View File

@@ -25,9 +25,11 @@
</div>
</div>
</template>
<script setup>
import { computed } from 'vue'
import BisectIcon from '@/assets/external/bh.svg'
import { BisectIcon } from '@'
const props = defineProps({
external: {
type: Boolean,
@@ -38,6 +40,7 @@ const props = defineProps({
default: '',
},
})
const target = computed(() => (props.external ? '_blank' : '_self'))
</script>