<template slot-scope="scope">
<el-tag :type="formatterhandleStatus(scope.row)" disable-transitions size="small">新TAG</el-tag>
</template>
computed:{
formatterhandleStatus(){
function formatterhandleTag(val){
if(val === 1){return "danger"}
}
return formatterhandleTag
}
}