Skip to content

Commit

Permalink
fix: 修复组件引用问题
Browse files Browse the repository at this point in the history
  • Loading branch information
eiinu committed Dec 15, 2023
1 parent 47afb19 commit a0b4ff1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/packages/__VUE/cascader/cascader-item.taro.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import { convertListToOptions } from './helper';
import { CascaderPane, CascaderOption, CascaderValue, convertConfig, CascaderTabs } from './types';
import { Loading, Checklist } from '@nutui/icons-vue-taro';
import NutTabs from '../tabs/index.taro.vue';
import NutTabPane from '../tabpane/index.vue';
import NutTabPane from '../tabpane/index.taro.vue';
import Tree from './tree';
import { useLocale } from '@/packages/utils/useLocale';
const { create } = createComponent('cascader-item');
Expand Down
2 changes: 1 addition & 1 deletion src/packages/__VUE/form/index.taro.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<script lang="ts">
import { createComponent } from '@/packages/utils/create';
import { component } from './common';
import NutCellGroup from '../cellgroup/index.vue';
import NutCellGroup from '../cellgroup/index.taro.vue';
const { create } = createComponent('form');
export default create(
component({
Expand Down
2 changes: 1 addition & 1 deletion src/packages/__VUE/invoice/index.taro.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import { createComponent } from '@/packages/utils/create';
import NutForm from '../form/index.taro.vue';
import NutFormItem from '../formitem/index.taro.vue';
import NutRadio from '../radio/index.taro.vue';
import NutRadioGroup from '../radiogroup/index.vue';
import NutRadioGroup from '../radiogroup/index.taro.vue';
import NutButton from '../button/index.taro.vue';
const { componentName, create } = createComponent('invoice');
export default create({
Expand Down

0 comments on commit a0b4ff1

Please sign in to comment.