Skip to content

Commit

Permalink
fix(Build): no use aliases (#606)
Browse files Browse the repository at this point in the history
  • Loading branch information
anlyyao authored Apr 19, 2023
1 parent 9486460 commit 7f4d111
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/checkbox/checkbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ import {
import config from '../config';
import CheckboxProps from './props';
import { renderContent, renderTNode, TNode, useDefault } from '../shared';
import { TdCheckboxProps } from '@/checkbox/type';
import { TdCheckboxProps } from '../checkbox/type';
import MinusLineFilledIcon from './assets/minus-line-filled-icon.svg';
import CheckLineFilledIcon from './assets/check-line-filled-icon.svg';
Expand Down
2 changes: 1 addition & 1 deletion src/form/form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import props from './props';
import { FormInjectionKey, FormItemContext } from './const';
import { FormDisabledProvider } from './hooks';
import config from '../config';
import { renderContent } from '@/shared';
import { renderContent } from '../shared';
import { FormItemValidateResult } from './form-item.vue';
const { prefix } = config;
Expand Down
2 changes: 1 addition & 1 deletion src/notice-bar/demos/customization.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<script lang="ts" setup>
import { h } from 'vue';
import { CloseIcon, ChevronRightIcon } from 'tdesign-icons-vue-next';
import { Toast } from '@/components';
import { Toast } from 'tdesign-mobile-vue';
const closeIcon = () => h(CloseIcon);
const arrowRight = () => h(ChevronRightIcon);
Expand Down
2 changes: 1 addition & 1 deletion src/notice-bar/demos/event.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<script lang="ts" setup>
import { h } from 'vue';
import { CloseIcon, ChevronRightIcon } from 'tdesign-icons-vue-next';
import { Toast } from '@/components';
import { Toast } from 'tdesign-mobile-vue';
const iconFunc = () => h(CloseIcon);
const arrowRight = () => h(ChevronRightIcon);
Expand Down
2 changes: 1 addition & 1 deletion src/picker/demos/cascade.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<script lang="ts" setup>
import { ref, computed, reactive } from 'vue';
import ToastPlugin from '@/toast';
import { ToastPlugin } from 'tdesign-mobile-vue';
import { PickerValue } from '../type';
const roles = [
Expand Down
2 changes: 1 addition & 1 deletion src/pull-down-refresh/demos/timeout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<script lang="ts">
import { ref, defineComponent } from 'vue';
import { Toast } from '@/components';
import { Toast } from 'tdesign-mobile-vue';
export default defineComponent({
setup(props, context) {
Expand Down

0 comments on commit 7f4d111

Please sign in to comment.