Framework7-Vue Slot Attribute Depricated

Hi guys!

I’m using Framework7-Vue in my current project.

<f7-list-input label="Range" :input="false">
    <f7-range slot="input" :value="50" :min="0" :max="100" :step="1" />
</f7-list-input>

But Eslint said that slot attributes are deprecated.
Any idea about this problem? Thanks.

Since Vue v2.6.0, there is a new way of using slots:

Thanks for your help :wink: