UNPKG

laue

Version:

Modern charts for Vue.js

61 lines (55 loc) 1.16 kB
import Trans from './trans' export default { name: 'LaMotionSpread', functional: true, props: ['axis', 'transition'], render(h, {children, props, parent}) { const id = `la-spread-${parent._uid}` const {axis, transition} = props return h('g', [ h('defs', [ h( 'clipPath', { attrs: { id } }, [ h( Trans, { props: { from: { width: axis === 'x' ? 0 : '100%', height: axis === 'y' ? 0 : '100%' }, trans: transition } }, [ h('rect', { attrs: { x: 0, y: 0, width: '100%', height: '100%' } }) ] ) ] ) ]), h( 'g', { attrs: { 'clip-path': `url(#${id})` } }, children ) ]) } }