Vue中使用html-webpack-plugin插件遇到的小问题。

在vue的index.html文件中会包含一个挂载的节点 也就是 <div id='app'> </div> , 但是如果我用html-webpack-plugin的时候,生成的html文件中不包含<div id='app'> </div> 这个挂载点,看了插件的文档也没有找到办法,请问应该怎样操作?

慕哥9229398
浏览 672回答 1
1回答

宝慕林4294392

html-webpack-plugin有一个template属性,可以指定一个你自己需要的html模版,用法如下:new HtmlWebpackPlugin({&nbsp; &nbsp; filename: 'index.html',&nbsp; &nbsp; inject: 'body',&nbsp; &nbsp; template: 'index.html_vm'})那么这个index.html_vm可以是这个样子的:<!DOCTYPE html><html><head>&nbsp; &nbsp; <meta charset="UTF-8">&nbsp; &nbsp; <title>demo</title></head><body>&nbsp; &nbsp; <div id="app"></div></body></html>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript