How to use the bearded grammar in vue's v-for in quotation marks?

1.v-for is used to judge vmurif. the condition of judgment comes from the value
2 in v-for. The code is as follows:

<div v-for="item in items">
    <div v-if="{{item.num}}>0">
        abc
    </div>
    <div v-else>
        efg
    </div>
</div>

3. In this way, vue made a mistake and humbly asked for advice. Thank you very much.

Aug.24,2021

Hello, landlord! There's something wrong with your writing. Try the following,

{{item}}</li>
 </ul>
computed: {
            filterNum(){
                const data = [
                    { num:1, },
                    { num:2, },
                    { num:3, },
                    { num:-1, },
                    { num:-2, },
                ]
                return data.map(item => item.num>0 ? 'abc':'efg')
            },
        },
Menu