config里面这样配置
new HTMLPlugin({
template: path.join(__dirname,'template.html')
})
template.html内容
<!DOCTYPE html>
<html lang="en">
<head>
<mate charset="UTF-8"></mate>
<mate name="viewport" content="width=device-width, initial-scale=1.0"></mate>
<mate http-equiv="X-UA-Compatible" content="ie=edge"></mate>
<title>Document</title>
</head>
<body>
<div id="root"></div>
</body>
</html>
index.js
import Vue from 'vue'
new Vue({
el: '#root',
template: '<div> this is content</div>'
})
页面打开后写在head里面的内容变到body里面去了,是什么原因
