mvc - vue.js code improvement?
世界只因有你
世界只因有你 2017-05-16 17:05:33
0
1
548

Is there any improvement in the above code?

世界只因有你
世界只因有你

reply all(1)
洪涛

The code is really ugly. Don’t you know how to use a filter or function?

var wordMap = ['待发车', ...]

// vue 里面
filters: {
    words: function (status) {
        return wordMap[status]
    }
}
// template 里面
<span>{{ item.status | words }}</span>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template