feat: add zine-direction shared components

This commit is contained in:
Jennie Robinson Faber 2026-04-02 21:16:00 +01:00
parent dbb3fbbc1b
commit 8b3daadadd
10 changed files with 594 additions and 176 deletions

View file

@ -0,0 +1,11 @@
<template>
<div class="dashed-box" :class="{ 'no-hover': !hoverable }">
<slot />
</div>
</template>
<script setup>
defineProps({
hoverable: { type: Boolean, default: true },
})
</script>