作用域插槽 向父组件传递 <template slot-scope="{ row, index }" slot="dateNo">
作用域插槽 向父组件传递 <template slot-scope="{ row, index }" slot="dateNo">
slotTest1
<slot name="action" :kk="kk"></slot>
slotTest2
<!-- * @description text !--> <template> <div> <slot-test1> <template slot-scope="{ kk }" slot="action"> <slot name="action" :kk="kk"></slot> 111 {{kk}} </template> </slot-test1> </div> </template> <script> import slotTest1 from './slotTest1' export default { name: 'slotTest', components: { slotTest1 }, props: {}, data () { return {} }, watch: {}, computed: {}, methods: {}, created () { }, mounted () { } } </script> <style lang="less" scoped> </style>
父组件调用
<slot-test2> <template slot-scope="{ kk }" slot="action"> 666 {{kk}} </template> </slot-test2>
---------------------------------------------
生活的意义就是你自己知道你要做什么,明确目标。没有目标,后面都是瞎扯!
https://pengchenggang.gitee.io/navigator/
SMART原则:
目标必须是具体的(Specific)
目标必须是可以衡量的(Measurable)
目标必须是可以达到的(Attainable)
目标必须和其他目标具有相关性(Relevant)
目标必须具有明确的截止期限(Time-based)
生活的意义就是你自己知道你要做什么,明确目标。没有目标,后面都是瞎扯!
https://pengchenggang.gitee.io/navigator/
SMART原则:
目标必须是具体的(Specific)
目标必须是可以衡量的(Measurable)
目标必须是可以达到的(Attainable)
目标必须和其他目标具有相关性(Relevant)
目标必须具有明确的截止期限(Time-based)