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

@@ -74,10 +74,11 @@
</template>
<script>
import { defineComponent } from "@nuxtjs/composition-api"
import { invokeAction } from "~/helpers/actions"
import { showChat } from "~/helpers/support"
export default {
export default defineComponent({
props: {
show: Boolean,
},
@@ -92,5 +93,5 @@ export default {
this.$emit("hide-modal")
},
},
}
})
</script>