mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
17 lines
231 B
Vue
17 lines
231 B
Vue
<script>
|
|
export default {
|
|
props: {
|
|
transitionProps: Object,
|
|
},
|
|
render () {
|
|
return (
|
|
<transition
|
|
{...this.transitionProps}
|
|
>
|
|
{this.$slots.default}
|
|
</transition>
|
|
)
|
|
},
|
|
}
|
|
</script>
|