design to light button and panel working without indicators

This commit is contained in:
isUnknown 2025-01-22 13:25:34 +01:00
parent 5a80cfaa81
commit c2314e6b8e
11 changed files with 221 additions and 23 deletions

View file

@ -0,0 +1,11 @@
<template>
<button v-if="page?.designToLight?.grade">
{{ page.designToLight.grade }}
</button>
</template>
<script setup>
import { storeToRefs } from "pinia";
import { usePageStore } from "../../stores/page";
const { page } = storeToRefs(usePageStore());
</script>