分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 软件开发

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

发布时间:2023-09-06 02:12责任编辑:林大明关键词:webpack
  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)

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

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved