design to light button and panel working without indicators
This commit is contained in:
parent
5a80cfaa81
commit
c2314e6b8e
11 changed files with 221 additions and 23 deletions
11
src/components/design-to-light/DTLButton.vue
Normal file
11
src/components/design-to-light/DTLButton.vue
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue