if-else2.html 569 B

123456789101112131415161718192021222324252627282930313233
  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="app">
  13. <div v-if="Math.random() > 0.7">
  14. Good
  15. </div>
  16. <div v-else-if="Math.random() > 0.4">
  17. Nomal
  18. </div>
  19. <div v-else>
  20. Bad
  21. </div>
  22. </div>
  23. <script>
  24. new Vue({
  25. el: '#app'
  26. })
  27. </script>
  28. </body>
  29. </html>