在components文件夹下有A B两个组件,如果要在A中引用B,该如何引用?使用 import B from 'B' 和 import B from '../components/B' 都不能引用组件,求问组件之间该如何引用
import B from './B'