Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix: import performance
Browse files Browse the repository at this point in the history
  • Loading branch information
mkucmus committed Mar 3, 2021
1 parent e53b32c commit bd3fd69
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ export default {
getComponent() {
try {
return () => ({
component: import(`@/components/listing/types/${this.filterCode}`),
component: () =>
import(`@/components/listing/types/${this.filterCode}`),
error: NoFilterFound,
})
} catch (e) {
Expand Down

0 comments on commit bd3fd69

Please sign in to comment.