fix: broken component import in prod

This commit is contained in:
liyasthomas
2021-08-24 09:14:46 +05:30
parent f20fed444a
commit 12c28f4efc
75 changed files with 254 additions and 153 deletions

View File

@@ -37,7 +37,9 @@
</template>
<script>
export default {
import { defineComponent } from "@nuxtjs/composition-api"
export default defineComponent({
props: {
response: { type: Object, default: () => {} },
},
@@ -111,5 +113,5 @@ export default {
}, 1000)
},
},
}
})
</script>