全局都想用到一个filter => noData
如果值为null || ''的时候,让他显示为‘--’
--- /src/filters/costom.js
export const noData = value =>{
return value ? value : '--'
}
--- /src/main.js
import * as costom from 'src/filter/constom'
Object.keys(custom).forEach(key => {
Vue.filter(key, custom[key])
})
然后在页面中正常使用就可以了。
{{msg | noData}}