Only render product when we have it ready.

This commit is contained in:
2020-07-26 21:19:24 +02:00
parent 43cc5e59cb
commit 9c5184c797

View File

@@ -1,5 +1,5 @@
<template> <template>
<product :product="product" /> <product v-if="product" :product="product" />
</template> </template>
<script> <script>