Skip to content

Commit

Permalink
chore(imports): improve import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ThornWalli committed Sep 23, 2024
1 parent 4215ed7 commit bc00aec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/ContentContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</template>

<script>
import useContentContainer from './useContentContainer';
import useContentContainer from './useContentContainer.js';
export default {
inheritAttrs: false,
Expand Down
2 changes: 1 addition & 1 deletion src/ContentHeadline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</template>

<script>
import useContentHeadline from './useContentHeadline';
import useContentHeadline from './useContentHeadline.js';
export default {
inheritAttrs: false,
Expand Down
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { default as ContentContainer } from './ContentContainer.vue';
export { default as ContentHeadline } from './ContentHeadline.vue';
export { default as useContentContainer } from './useContentContainer';
export { default as useContentHeadline } from './useContentHeadline';
export { default as useContentContainer } from './useContentContainer.js';
export { default as useContentHeadline } from './useContentHeadline.js';

0 comments on commit bc00aec

Please sign in to comment.