标签:rip head body har title log logs utf-8 com
1、组件的创建
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>组件的创建</title> <script src="js/vue.js"></script> </head> <body> <div id="container"> <p>{{msg}}</p> <!--组件的调用 --> <my-component></my-component> </div> <script> //组件的创建 Vue.component(/*组件名*/"my-component",/*对象*/{ //template属性 template: ` <h1>林垃圾</h1> ` }) new Vue({ el:"#container", data:{ msg:"hello Vue" } }) </script> </body> </html>
标签:rip head body har title log logs utf-8 com
原文地址:http://www.cnblogs.com/wangruifang/p/7656107.html