12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- </head>
- <script src="/static/vue/vue.min.js"></script>
- <body>
- <div id="app"></div>
- <p>{{message}}</p>
- <script>
- new Vue({
- data(){
- return {
- message:"asdasd"
- }
- },
- render(h){
- return h("div",this.hi)
- }
- })
- </script>
- </body>
- </html>
|