Skip to content

Commit

Permalink
fix: 修复PR建议:删除icons的样式引入;将样式引入放到import最下方
Browse files Browse the repository at this point in the history
  • Loading branch information
unfound committed Aug 10, 2021
1 parent 7430303 commit de48f06
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion devui/select/src/select.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
@import '../../style/mixins/index';
@import '../../style/theme/color';
@import '../../style/theme/corner';
@import '@devui-design/icons/icomoon/devui-icon.css';

$border-change-time: 300ms;
$border-change-function: cubic-bezier(0.645, 0.045, 0.355, 1);
Expand Down
2 changes: 1 addition & 1 deletion devui/select/src/select.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import './select.scss';
import { defineComponent, ref, Transition, toRefs } from 'vue';
import { selectProps, SelectProps, OptionItem } from './use-select';
import DIcon from '../../icon/src/icon';
import { className } from './utils';
import './select.scss';

export default defineComponent({
name: 'DSelect',
Expand Down

0 comments on commit de48f06

Please sign in to comment.