vue 模板template
程序员文章站
2022-03-20 15:25:14
入门 ......
入门
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>vue实例化</title> </head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> <body> <div id="root"></div> <script type="text/javascript"> new vue({ el:"#root", template:'<h1>hello {{msg}}</h1> ', data:{ msg: "world" } }) </script> </body> </html>
上一篇: 浏览器滚动条 --- 自定义“衣裳”