mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +08:00
25 lines
444 B
TypeScript
25 lines
444 B
TypeScript
import { mount } from '@vue/test-utils'
|
|
|
|
import type { Slot } from 'vue'
|
|
|
|
const createRefElement = (slots?: Record<string, Function>) => {
|
|
const wrapper = mount(
|
|
defineComponent({
|
|
setup() {
|
|
const domRef = ref<HTMLElement>()
|
|
|
|
return {
|
|
domRef,
|
|
}
|
|
},
|
|
render() {
|
|
return <div ref="domRef">{{ ...slots }}</div>
|
|
},
|
|
}),
|
|
)
|
|
|
|
return wrapper
|
|
}
|
|
|
|
export default createRefElement
|