mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 17:31:43 +08:00
17 lines
255 B
JavaScript
17 lines
255 B
JavaScript
|
|
import { storeShape } from './PropTypes'
|
|
export default {
|
|
name: 'StoreProvider',
|
|
props: {
|
|
store: storeShape.isRequired,
|
|
},
|
|
provide () {
|
|
return {
|
|
_store: this.$props,
|
|
}
|
|
},
|
|
render () {
|
|
return this.$slots.default[0]
|
|
},
|
|
}
|