Skip to content

Commit

Permalink
#203 fixes missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
patric-eberle committed Apr 6, 2023
1 parent d65631b commit 3c985f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/elements/e-multiselect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
import { IModifiers } from '@/plugins/vue-bem-cn/src/globals';
import eCheckbox from '@/elements/e-checkbox.vue';
import eIcon from '@/elements/e-icon.vue';
import eProgress from '@/elements/e-progress.vue';
interface IOption {
value: string;
Expand All @@ -100,10 +101,11 @@
*/
export default defineComponent({
name: 'e-multiselect',
components: {
eCheckbox,
eIcon,
eProgress,
},
props: {
Expand Down
2 changes: 2 additions & 0 deletions src/elements/e-select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
import useFormStates, { IFormStates, withProps } from '@/compositions/form-states';
import { IModifiers } from '@/plugins/vue-bem-cn/src/globals';
import eIcon from '@/elements/e-icon.vue';
import eProgress from '@/elements/e-progress.vue';
interface IData {
internalValue: string;
Expand All @@ -59,6 +60,7 @@
components: {
eIcon,
eProgress,
},
inheritAttrs: false,
Expand Down

0 comments on commit 3c985f0

Please sign in to comment.