码迷,mamicode.com
首页 > Web开发 > 详细

vue+webpack搭建基础项目(非vue-cli)

时间:2018-08-28 20:28:06      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:file   temp   20px   图片   dex   pen   create   inject   搭建   

  1. yarn add vue
  2. yarn add webpack
  3. yarn add webpack-cli
  4. yarn add html-webpack-plugin
  5. yarn add webpack-dev-server
  6. 创建build、src文件夹
  7. 创建index.html文件
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Vue</title>
    </head>
    <body>
        <div id="app"></div>
    </body>
    </html>
  8. 创建src/index.js文件
    import Vue from ‘vue‘
    new Vue({
      el:‘#app‘,
      render(h){
        return h(‘div‘,‘hello world!‘)
      }
    })
  9. 创建build/webpack.dev.conf.js文件
    const HtmlWebpackPlugin = require(‘html-webpack-plugin‘)
    module.exports = {
      entry: ‘./src/index‘,
      output: {
        filename:‘./dist/main.js‘
      },
      plugins:[new HtmlWebpackPlugin({
        filename:‘index.html‘,
        template:‘./src/index.html‘,
        inject:true //true夹在在文件尾部
      })],
      devServer: {
        port:1222,
        open:true//自动打开浏览器
      }
    }
  10. 在package.json中添加scripts
  11. yarn start 启动项目

技术分享图片gitHub

vue+webpack搭建基础项目(非vue-cli)

标签:file   temp   20px   图片   dex   pen   create   inject   搭建   

原文地址:https://www.cnblogs.com/hanxiaoer/p/9550210.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!