index.html 867 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <title></title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <script src="https://unpkg.com/vue/dist/vue.js"></script>
  8. <link href="../css/style.css" rel="stylesheet"> </head>
  9. <body>
  10. <div id="myApp">
  11. <p>{{message}}</p>
  12. <p>{{message | toupper }}</p>
  13. <hr>
  14. <p>现在的vue.js学习进度是{{num}}({{num | topercentage}})。</p>
  15. </div>
  16. <script>
  17. var myApp = new Vue({
  18. el: '#myApp',
  19. data: {
  20. message: 'hello vue.js world.',
  21. num: 0.3
  22. },
  23. filters: {
  24. toupper: function(value){
  25. return value.toUpperCase();
  26. },
  27. topercentage: function(value){
  28. return value * 100 + '%';
  29. },
  30. },
  31. });
  32. </script>
  33. </body>
  34. </html>