Skip to content

Commit e94039f

Browse files
committed
chore: 调整构建配置和目录结构
1 parent 81932ac commit e94039f

File tree

11 files changed

+8
-8
lines changed

11 files changed

+8
-8
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/shared/section-layout/components/item.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script lang="ts" setup>
22
import type { SectionItemProps } from '../interface'
33
import { inject } from 'vue'
4-
import { createBEM } from '@/internal'
4+
import { createBEM } from '@/_internal'
55
import { SectionLayoutInjectionKey } from '../injection-keys'
66
77
defineOptions({

src/shared/section-layout/components/main.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { SectionMainProps } from '../interface'
33
import { toArray } from '@antfu/utils'
44
import { useElementSize } from '@vueuse/core'
55
import { inject, shallowRef, watch } from 'vue'
6-
import { createBEM } from '@/internal'
6+
import { createBEM } from '@/_internal'
77
import { SectionLayoutInjectionKey } from '../injection-keys'
88
99
defineOptions({

src/shared/section-layout/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<script lang="ts" setup>
22
import type { SectionLayoutConfig, SectionLayoutProps } from './interface'
33
import { computed, getCurrentInstance, provide } from 'vue'
4-
import { createBEM } from '@/internal'
5-
import { loadCSS } from '@/internal/load-css'
4+
import { createBEM } from '@/_internal'
5+
import { loadCSS } from '@/_internal/load-css'
66
import css from './index.css?raw'
77
import { SectionLayoutInjectionKey } from './injection-keys'
88

src/shared/section-layout/injection-keys.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { InjectionKey } from 'vue'
22
import type { SectionLayoutConfig } from './interface'
3-
import type { BEM } from '@/internal'
3+
import type { BEM } from '@/_internal'
44

55
export const SectionLayoutInjectionKey: InjectionKey<{
66
bem: BEM

src/shared/toolbar/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup lang="ts">
22
import type { ToolbarProps, ToolbarSlots } from './interface'
3-
import { createBEM } from '@/internal'
4-
import { loadCSS } from '@/internal/load-css'
3+
import { createBEM } from '@/_internal'
4+
import { loadCSS } from '@/_internal/load-css'
55
import css from './index.css?raw'
66
77
defineOptions({

0 commit comments

Comments
 (0)