File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,17 +32,17 @@ This plugin supports HMR of Vue JSX components. The detection requirements are:
32
32
import { defineComponent } from ' vue'
33
33
34
34
// named exports w/ variable declaration: ok
35
- export const Foo = defineComponent (... )
35
+ export const Foo = defineComponent ({} )
36
36
37
37
// named exports referencing variable declaration: ok
38
- const Bar = defineComponent (... )
38
+ const Bar = defineComponent ({ render () { return < div > Test < / div > }} )
39
39
export { Bar }
40
40
41
41
// default export call: ok
42
- export default defineComponent (... )
42
+ export default defineComponent ({ render () { return < div > Test < / div > }} )
43
43
44
44
// default export referencing variable declaration: ok
45
- const Baz = defineComponent (... )
45
+ const Baz = defineComponent ({ render () { return < div > Test < / div > }} )
46
46
export default Baz
47
47
```
48
48
You can’t perform that action at this time.
0 commit comments