Vue的打包
1.搭建
1.依赖安装
npm install vue@2.5.21 --save
2.index.html中新增
<div id="app">
<h2>{{message}}</h2>
</div>
3.main.js中
import Vue from "vue";
const app = new Vue({
el:"#app",
data:{
message :'xujiang'
}
})
4.webpack.config.js中新增
resolve:{
//alias:别名
//git commit -m'注释'
// git c ''
//alias
alias:{
'vue$':'vue/dist/vue.esm.js'
}
}
2.运行
npm run build