12 lines
201 B
Vue
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>
|