kanban > steps : add dtl indicator
This commit is contained in:
parent
7038185e7f
commit
30fbc0e4e8
9 changed files with 222 additions and 156 deletions
|
|
@ -31,12 +31,14 @@
|
|||
}}
|
||||
</router-link>
|
||||
</footer>
|
||||
<div v-if="isDesignToLightStep(step)">Design to light</div>
|
||||
</article>
|
||||
</template>
|
||||
<script setup>
|
||||
import { useRoute } from "vue-router";
|
||||
import DateTime from "./DateTime.vue";
|
||||
import { computed } from "vue";
|
||||
import { useDesignToLightStore } from "../../../stores/designToLight";
|
||||
|
||||
const { step, pdf, index } = defineProps({
|
||||
step: Object,
|
||||
|
|
@ -48,6 +50,8 @@ const { step, pdf, index } = defineProps({
|
|||
},
|
||||
});
|
||||
|
||||
const { isDesignToLightStep } = useDesignToLightStore();
|
||||
|
||||
const route = useRoute();
|
||||
|
||||
const uri = computed(() => {
|
||||
|
|
|
|||
|
|
@ -24,16 +24,18 @@
|
|||
images[0].comments.length > 1 ? "s" : ""
|
||||
}}
|
||||
</footer> -->
|
||||
<div v-if="isDesignToLightStep(step)">Design to light</div>
|
||||
</article>
|
||||
</template>
|
||||
<script setup>
|
||||
import DateTime from "./DateTime.vue";
|
||||
import { usePageStore } from "../../../stores/page";
|
||||
import { useDesignToLightStore } from "../../../stores/designToLight";
|
||||
|
||||
const { images, step, uri } = defineProps({
|
||||
images: Array,
|
||||
step: Object,
|
||||
uri: String,
|
||||
});
|
||||
const { page } = usePageStore();
|
||||
|
||||
const { isDesignToLightStep } = useDesignToLightStore();
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue