mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-03 11:45:34 +00:00
25 lines
457 B
Vue
25 lines
457 B
Vue
<template>
|
|
<div>
|
|
<keep-alive>
|
|
<RealStockCard v-if="store.isRealStockListCardOpen" />
|
|
</keep-alive>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "vue";
|
|
import { useStore } from "../../store";
|
|
import RealStockCard from "../cards/RealStockCard.vue";
|
|
|
|
export default defineComponent({
|
|
components: { RealStockCard },
|
|
data() {
|
|
return {
|
|
store: useStore(),
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style scoped></style>
|