I encountered an issue while attempting to import a component in my file that generated the following error message:
TS7022: 'default' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer.
Version: typescript 4.2.2, eslint 7.32.0
Below is the script tag where the error occurred:
<script lang="ts">
import { defineComponent } from '@vue/composition-api'
import OrdersTable from 'src/components/OrdersTable.vue';
export default defineComponent({
components: { OrdersTable }
})
</script>