Vue中有内置的一些过滤器:加上 | 这个管道符 ,再加上过滤属性
DOCTYPE html>
<html lang&#61;"en">
<head> <meta charset&#61;"UTF-8"> <title>title> <meta name&#61;"viewport" content&#61;"width&#61;device-width, initial-scale&#61;1.0, maximum-scale&#61;1.0, user-scalable&#61;0"> <meta name&#61;"apple-mobile-web-app-capable" content&#61;"yes"> <meta name&#61;"apple-mobile-web-app-status-bar-style" content&#61;"black"> <style> .red{ color: red; } .blue{ background: blue; } style> <script src&#61;"vue.js">script> <script> window.onload&#61;function(){ new Vue({ el:&#39;#box&#39;, data:{ } }); }; script>
head>
<body> <div id&#61;"box"> {{&#39;welcome&#39;|uppercase}} <br> {{&#39;WELCOME&#39;|lowercase}} <br> {{&#39;WELCOME&#39;|lowercase|capitalize}} <br> {{12|currency}} <br> {{12|currency &#39;&#xffe5;&#39;}} div>
body>
html>
结果&#xff1a;