mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-03 11:45:34 +00:00
15 lines
295 B
Vue
15 lines
295 B
Vue
<template>
|
|
<div>
|
|
<keep-alive>
|
|
<RealStockCard v-if="store.isRealStockListCardOpen" />
|
|
</keep-alive>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { useStore } from '../../store';
|
|
import RealStockCard from '../cards/RealStockCard.vue';
|
|
|
|
const store = useStore();
|
|
</script>
|