Can't vue computed data be bound to v-for?

computed: {
    show_data: function() {
        // 
        return this.xxx
        // console.log
    }
}

//  v-for 
// 
<li v-for="item in show_data">
    <span>{{item}}</span>
    <span>10</span>
</li>
Mar.03,2021

v-for can use computed data. Your reason should be other problems

.
Menu