mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +08:00
35 lines
624 B
TypeScript
35 lines
624 B
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
import { createApp, defineComponent } from 'vue'
|
|
|
|
import type { App } from 'vue'
|
|
|
|
export default function renderHook<R = any>(
|
|
renderFC: () => R,
|
|
): [
|
|
R,
|
|
App<Element>,
|
|
{
|
|
act?: (fn: () => void) => void
|
|
},
|
|
] {
|
|
let result: any
|
|
let act: ((fn: () => void) => void) | undefined
|
|
const app = createApp(
|
|
defineComponent({
|
|
setup() {
|
|
result = renderFC()
|
|
|
|
act = (fn: () => void) => {
|
|
fn()
|
|
}
|
|
|
|
return () => {}
|
|
},
|
|
}),
|
|
)
|
|
|
|
app.mount(document.createElement('div'))
|
|
|
|
return [result, app, { act }]
|
|
}
|