vue template中slot-scope/scope的使用方法
在vue 2.5.0+ 中slot-scope替代了 scope template 的使用情形为,我们已经封装好一个组建,预留了插槽,使用 的插槽 首先 我们的创建一个组建 组建很简单有一个 slot,slot有两个属性 a=123,b=msg <template> <div> <div>下面是一个slot</div> <slot a=123 b=msg></slot> </div> </template> 接下来我们引入组建,并使用组建,引入的组建名 为mysolt,并使用组建 然后使用 template ,并使用scope/slot-scope, <div>