methods: {
getInfoById(type){
let rnKey = this.$options.filters['rnKey'](type)
}
}
exports.install = function(Vue, options) {
Vue.filter('rnKey', function(type) {
let rnKey = ''
switch(type){
case 'man':
rnKey = '男';
break;
case 'woman':
rnKey = '女人';
break;
}
return rnKey
})
}