单项选择题

vue中进行异步加载组件的写法正确的是()

A.’my-component’:()=>import(’./my-async-component’)
B.my-component’:require([’./my-async-component’],reject)
C.my-component’:import([’./my-async-component’],resolve)
D.my-component’:require(’./my-async-component’)