if.html 842 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>1.引入VUE</title>
  6. <meta charset="UTF-8">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <script src="https://unpkg.com/vue/dist/vue.js"></script>
  9. <link href="../css/style.css" rel="stylesheet"> </head>
  10. </head>
  11. <body>
  12. <div id="myApp">
  13. <h3>游戏列表</h3>
  14. <!-- Virtual DOM -->
  15. <div v-if="seen">2017最新发卖</div>
  16. <ol>
  17. <li v-for="game in games">{{game.title}} / {{game.price}}元</li>
  18. </ol>
  19. </div>
  20. <script>
  21. var myApp = new Vue({
  22. el: '#myApp',
  23. data: {
  24. seen: false,
  25. games: [{
  26. title: '勇者斗恶龙',
  27. price: 400
  28. }, {
  29. title: '超级马里奥',
  30. price: 380
  31. }, {
  32. title: '我的世界',
  33. price: 99
  34. }, ],
  35. },
  36. });
  37. </script>
  38. </body>
  39. </html>