Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#107] vite - fix import error #110

Merged
merged 1 commit into from
Mar 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/components/Picker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ import store from '../utils/store'
import frequently from '../utils/frequently'
import { deepMerge, measureScrollbar } from '../utils'
import { PickerProps } from '../utils/shared-props'
import Anchors from './anchors'
import Category from './category'
import Preview from './preview'
import Search from './search'
import Anchors from './anchors.vue'
import Category from './category.vue'
import Preview from './preview.vue'
import Search from './search.vue'

const I18N = {
search: 'Search',
Expand Down
8 changes: 4 additions & 4 deletions src/components/VirtualScrollPicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ import store from '../utils/store'
import frequently from '../utils/frequently'
import { deepMerge, measureScrollbar } from '../utils'
import { PickerProps } from '../utils/shared-props'
import Anchors from './anchors'
import Category from './category'
import Preview from './preview'
import Search from './search'
import Anchors from './anchors.vue'
import Category from './category.vue'
import Preview from './preview.vue'
import Search from './search.vue'

/*
* Note about `buffer` setting for DynamicScroller: this is a
Expand Down
2 changes: 1 addition & 1 deletion src/components/category.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<script>

import { EmojiView } from '../utils/emoji-data'
import Emoji from './Emoji'
import Emoji from './Emoji.vue'


export default {
Expand Down
14 changes: 7 additions & 7 deletions src/components/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export { default as Anchors } from './anchors'
export { default as Category } from './category'
export { default as Preview } from './preview'
export { default as Search } from './search'
export { default as Skins } from './skins'
export { default as Emoji } from './Emoji'
export { default as Picker } from './Picker'
export { default as Anchors } from './anchors.vue'
export { default as Category } from './category.vue'
export { default as Preview } from './preview.vue'
export { default as Search } from './search.vue'
export { default as Skins } from './skins.vue'
export { default as Emoji } from './Emoji.vue'
export { default as Picker } from './Picker.vue'
4 changes: 2 additions & 2 deletions src/components/preview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@

<script>

import Emoji from './Emoji'
import Skins from './skins'
import Emoji from './Emoji.vue'
import Skins from './skins.vue'

export default {
props: {
Expand Down