index.html 411 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <script src="/static/vue/vue.min.js"></script>
  8. <body>
  9. <div id="app"></div>
  10. <p>{{message}}</p>
  11. <script>
  12. new Vue({
  13. data(){
  14. return {
  15. message:"asdasd"
  16. }
  17. },
  18. render(h){
  19. return h("div",this.hi)
  20. }
  21. })
  22. </script>
  23. </body>
  24. </html>