index.html
<html> <head> <title>Vue Hello World</title> </head> <body> </body> </html>main.js
import Vue from 'vue';
new Vue({ el: '#app', template: "
test
" });
使用 webpack 打包后,在浏览器中运行,结果是这样的
<html> <head> <title>Vue Hello World</title> </head><body>
<div id="app"></div>
<script src="main.js"></script>
</body>
</html>
并没有替换到
,不明白啊,求大神指点!!!!