Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
132 views
in Technique[技术] by (71.8m points)

javascript - Vue.js: can't orderBy in v-for

I've upgraded to Vue.js 2.0.5 and orderBy in a v-for seems to not be working anymore

<li v-for="c in rooms | orderBy 'last_iteraction'">

outputs

  • invalid expression: v-for="c in rooms | orderBy 'last_iteraction'"

anyone knows how to solve?

question from:https://stackoverflow.com/questions/40512585/vue-js-cant-orderby-in-v-for

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

orderBy Filter is removed in vue.js v-2.

Quoted from vue.js docs

Instead of:

<p v-for="user in users | orderBy 'name'">{{ user.name }}</p>

Use lodash’s orderBy (or possibly sortBy) in a computed property:

<p v-for="user in orderedUsers">{{ user.name }}</p>

computed: {
  orderedUsers: function () {
    return _.orderBy(this.users, 'name')
  }
}

Reference:

https://vuejs.org/v2/guide/migration.html#Replacing-the-orderBy-Filter


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...