文本

用得比较少

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <div id="app"></div>
  11. <template id="my-app">
  12. <!-- 这两个效果是一样的 -->
  13. <h2 v-text="message"></h2>
  14. <h2>{{message}}</h2>
  15. </template>
  16. <script src="https://unpkg.com/vue@next"></script>
  17. <script>
  18. const App = {
  19. template: '#my-app',
  20. data() {
  21. return {
  22. message: "Hello World"
  23. }
  24. }
  25. }
  26. Vue.createApp(App).mount('#app');
  27. </script>
  28. </body>
  29. </html>

image.png