mirror of
https://github.com/youzan/vant.git
synced 2025-10-22 20:04:09 +00:00
chore: prefer named exports (#8315)
* chore: prefer named exports * chore: fix import
This commit is contained in:
@@ -4,9 +4,9 @@ import { PropType, defineComponent } from 'vue';
|
||||
import { createNamespace, addUnit } from '../utils';
|
||||
|
||||
// Components
|
||||
import Icon from '../icon';
|
||||
import Sidebar from '../sidebar';
|
||||
import SidebarItem from '../sidebar-item';
|
||||
import { Icon } from '../icon';
|
||||
import { Sidebar } from '../sidebar';
|
||||
import { SidebarItem } from '../sidebar-item';
|
||||
|
||||
const [name, bem] = createNamespace('tree-select');
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
import TreeSelect from '..';
|
||||
import { TreeSelect } from '..';
|
||||
import { mount } from '../../../test';
|
||||
|
||||
test('empty list', () => {
|
||||
|
Reference in New Issue
Block a user