v-show.html 694 B

12345678910111213141516171819202122232425262728293031
  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. <h1 v-show="result">任天堂新一代主机Switch</h1>
  12. <button @click="btnClick">显示按钮</button>
  13. </div>
  14. <script>
  15. var myApp = new Vue({
  16. el: '#myApp',
  17. data: {
  18. result: true
  19. },
  20. methods: {
  21. btnClick: function(){
  22. this.result = !this.result;
  23. },
  24. },
  25. });
  26. </script>
  27. </body>
  28. </html>