Vue 2.5 triggers warning of deprecated usage of scope instead of slot-scope
See for example: ![Screenshot_2019-01-11_at_10.01.12](/uploads/0322fd604ec7aa85cecaf015796731ae/Screenshot_2019-01-11_at_10.01.12.png) ``` (Emitted value instead of an instance of Error) the "scope" attribute for scoped slots have been deprecated and replaced by "slot-scope" since 2.5. The new "slot-scope" attribute can also be used on plain elements in addition to <template> to denote scoped slots. ``` It should be as easy as updating the attribute name from `scope=` to `slot-scope=`
issue