Files
web/src/components/NeedsChart.vue
2024-02-27 22:20:23 -04:00

12 lines
201 B
Vue

<template>
<slot v-if="co.chartReady"/>
</template>
<script setup>
import {useChartOrderStore} from "@/orderbuild.js";
const co = useChartOrderStore()
</script>
<style scoped lang="scss">
</style>