Add custom css class to f7-list or another component

Hello,
i use framework7 vue + webpack.

i have this element:

<f7-list no-hairlines-md>

When rendering the app i have this:

<div class="list no-hairlines-md">

If i insert new class like “no-margin-top”

i have this

<div class="list no-hairlines-md" no-margin-top>

Why the my custom class is not implemented in the rendering?

How i can create a custom class ?

Thanks in advance

It should be

<f7-list no-hairlines-md class="no-margin-top">
1 Like

Thanks :smile:
I’m new in framework7