This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
// 导入名为 MultiTab 的Vue组件,该组件定义在当前目录下的 MultiTab.vue 文件中
import MultiTab from './MultiTab';
// 导入index.less样式表文件,用于为MultiTab组件提供样式定义
import './index.less';
// 将导入的 MultiTab 组件设置为默认导出
// 这样其他文件就可以通过 import MultiTab 来使用这个组件
export default MultiTab;