模板必须加<h1>标签才能在页面中显示出来吗?
<div id="root"></div> <script> new Vue({ el:"#root", template:'hello {{msg}}', data:{ msg:"world" } }) </script>
未加<h1>标签结果浏览器无输出值
<div id="root"></div> <script> new Vue({ el:"#root", template:'hello {{msg}}', data:{ msg:"world" } }) </script>
未加<h1>标签结果浏览器无输出值
2019-05-06
举报