Skip to content

Commit

Permalink
Add import issue test case
Browse files Browse the repository at this point in the history
  • Loading branch information
René Roth committed May 9, 2022
1 parent 2ea3d04 commit d944225
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/Foobar.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<template>
<div>
foobar
</div>
</template>
6 changes: 5 additions & 1 deletion src/Test.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@

<script>
import * as _ from 'lodash'
import Foobar from './Foobar.vue'
export default {
props: ['foo', 'bar']
props: ['foo', 'bar'],
components: {
Foobar,
},
}
</script>

0 comments on commit d944225

Please sign in to comment.