作者:mobiledu2502895753 | 来源:互联网 | 2023-08-12 08:44
Vue挂载点、模板、实例之间的关系
<html lang&#61;"en">
<head><meta charset&#61;"UTF-8"><title>testtitle>
head>
<script src&#61;"./vue.js">script>
<body><div id&#61;"root">div><script>new Vue({ el: &#39;#root&#39;, template: &#39;{{msg}}
&#39;, data: {msg: &#39;hello vue!&#39;}})script>
body>
html>