创建:使用: 创建://main.js Vue.filter("format",function(val){ if(val.length>6){ val = val.slice(0,6)+"..." } return val}) 使用:/*创建后直接调用,无需引入文件 .vue中使用*/<template> <div> <img :src="data.coverImgUrl" /> <p>{{data.name | format()}}</p> </div></template>