mirror of
https://github.com/troisjs/trois.git
synced 2024-11-24 04:12:02 +08:00
canvas fallthrough attrs #59
This commit is contained in:
parent
8c1c81bc94
commit
fd35878753
@ -114,7 +114,8 @@ export default defineComponent({
|
|||||||
onReady: Function as PropType<(r: RendererInterface) => void>,
|
onReady: Function as PropType<(r: RendererInterface) => void>,
|
||||||
onClick: Function as PropType<(this: HTMLCanvasElement, ev: MouseEvent) => any>,
|
onClick: Function as PropType<(this: HTMLCanvasElement, ev: MouseEvent) => any>,
|
||||||
},
|
},
|
||||||
setup(props): RendererSetupInterface {
|
inheritAttrs: false,
|
||||||
|
setup(props, { attrs }): RendererSetupInterface {
|
||||||
const initCallbacks: InitCallbackType[] = []
|
const initCallbacks: InitCallbackType[] = []
|
||||||
const mountedCallbacks: MountedCallbackType[] = []
|
const mountedCallbacks: MountedCallbackType[] = []
|
||||||
const beforeRenderCallbacks: RenderCallbackType[] = []
|
const beforeRenderCallbacks: RenderCallbackType[] = []
|
||||||
@ -122,6 +123,15 @@ export default defineComponent({
|
|||||||
const resizeCallbacks: ResizeCallbackType[] = []
|
const resizeCallbacks: ResizeCallbackType[] = []
|
||||||
|
|
||||||
const canvas = document.createElement('canvas')
|
const canvas = document.createElement('canvas')
|
||||||
|
Object.entries(attrs).forEach(([key, value]) => {
|
||||||
|
const matches = key.match(/^on([A-Z][a-zA-Z]*)$/)
|
||||||
|
if (matches) {
|
||||||
|
canvas.addEventListener(matches[1].toLowerCase(), value as {(): void })
|
||||||
|
} else {
|
||||||
|
canvas.setAttribute(key, value as string)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
const config: ThreeConfigInterface = {
|
const config: ThreeConfigInterface = {
|
||||||
canvas,
|
canvas,
|
||||||
antialias: props.antialias,
|
antialias: props.antialias,
|
||||||
|
Loading…
Reference in New Issue
Block a user