正确的引入:
import ImportGoods from './importGoods.vue'
<ImportGoods :isShowDia="isShowDia" @updateShow="updateShow" />
虽然文件名是importGoods.vue, 但是引入之后, 首字母要大写, template中使用的时候也是
也不要加 { }, 否则报错: The requested module '/src/views/backend/sim/importGoods.vue?t=1682760451814' does not provide an export named 'ImportGoods'
import {ImportGoods} from './importGoods.vue'
另外一些报错也是没写好的原因
[Vue warn]: Failed to resolve component: ImportSim If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.