
body部分:
<!DOCTYPE html>
<html lang="en">
<head>
? ? <meta charset="UTF-8">
? ? <title>Document</title>
</head>
<body>
? ? <div id="lgy">
? ? ? ? <p>{{123.456|number}}</p>
? ? </div>
js部分:
? ? <script src="js/vue.js"></script>
? ? <script>
? ? ? ? new Vue({
? ? ? ? ? ? el:'#lgy',
? ? ? ? ? ? filters:{
? ? ? ? ? ? ? ? number:function(data){
? ? ? ? ? ? ? ? return:data.toFixed(2)
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? })
? ? </script>
</body>
</html>