{{msg}}不显示 帮我看一下怎么回事
<body> <div id="app"> <div class="bg"> hello world!! </br> {{msg}} </div> </div> <script> new vue({ el: '#app', data: { msg: "勇士西部总冠军" } }) </script> </body>
<body> <div id="app"> <div class="bg"> hello world!! </br> {{msg}} </div> </div> <script> new vue({ el: '#app', data: { msg: "勇士西部总冠军" } }) </script> </body>
2019-05-22
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div id="app"> <div class="bg"> hello world!! </br> {{msg}} </div> </div> <script src="https://cdn.jsdelivr.net/npm/vue"></script> <script> new Vue({ el: '#app', data: { msg: "勇士西部总冠军" } }) </script> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div id="app"> <div class="bg"> hello world!! </br> {{msg}} </div> </div> <script src="https://cdn.jsdelivr.net/npm/vue"></script> <script> new Vue({ el: '#app', data: { msg: "勇士西部总冠军" } }) </script> </body> </html>
举报