Skip to content

Commit

Permalink
fix: self import change to relative import path (opentiny#654)
Browse files Browse the repository at this point in the history
  • Loading branch information
chilingling authored Aug 9, 2024
1 parent 3b20b8b commit f44b525
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/common/component/I18nInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
</template>

<script>
import { BindI18n } from '@opentiny/tiny-engine-common'
import { computed, ref, watchEffect } from 'vue'
import { useTranslate } from '@opentiny/tiny-engine-meta-register'
import { Input, Popover } from '@opentiny/vue'
import { IconClose, IconLanguage } from '@opentiny/vue-icon'
import { computed, ref, watchEffect } from 'vue'
import BindI18n from './BindI18n.vue'
export default {
name: 'I18nInput',
Expand Down
4 changes: 2 additions & 2 deletions packages/common/component/MetaCodeEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@
import { computed, nextTick, reactive, ref, watchEffect } from 'vue'
import { Button, DialogBox } from '@opentiny/vue'
import { iconChevronDown, iconChevronUp } from '@opentiny/vue-icon'
import { formatString } from '@opentiny/tiny-engine-common/js/ast'
import i18n from '@opentiny/tiny-engine-common/js/i18n'
import VueMonaco from './VueMonaco.vue'
import { formatString } from '../js/ast'
import i18n from '../js/i18n'
export default {
components: {
Expand Down

0 comments on commit f44b525

Please sign in to comment.