var app = new Vue({ el: '#app', computed: { sortedData () { if(!this.sort.field){ return this.items } return this.items.concat().sort((a,b)=>{ ...
確定! 回上一頁