vue中异步移入组件

问题描述:如果使用import CustomerSearch from '@/components/public/CustomerSearch'引入组件的话,有时候组件引入不成功,导致直接显示标签;

解决:使用异步引入即可解决这个问题

const CustomerSearch = () => import('@/components/public/CustomerSearch')