fix: fix provide inject error

This commit is contained in:
zhuzhengjian
2023-03-17 17:24:49 +08:00
parent c0666f2553
commit 98071ea5f0
6 changed files with 104 additions and 18 deletions

View File

@ -0,0 +1,11 @@
import { defineComponent } from 'vue'
const Wave = defineComponent({
name: 'Wave',
inheritAttrs: false,
setup() {
return () => {}
}
})
export default Wave