mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2025-03-15 15:05:11 +08:00
12 lines
169 B
TypeScript
12 lines
169 B
TypeScript
|
import { defineComponent } from 'vue'
|
||
|
|
||
|
const Wave = defineComponent({
|
||
|
name: 'Wave',
|
||
|
inheritAttrs: false,
|
||
|
setup() {
|
||
|
return () => {}
|
||
|
}
|
||
|
})
|
||
|
|
||
|
export default Wave
|