1. // 第一种
    2. vue.component('test-compo', function (resolve, reject) {
    3. require(['./test.vue'], resolve)
    4. })
    5. // 第二种
    6. vue.component('test-compo', () => import('./test.vue'))
    7. // 第三种 高阶
    8. vue.component('test-compo', () => {
    9. component: import('./test.vue')
    10. delay: 200,
    11. timout: 2000
    12. })