zl程序教程

您现在的位置是:首页 >  前端

当前栏目

parcel打包Vue.js零配置

2023-06-13 09:16:13 时间

初始化项目

// 安装脚手架
$ npm install parcel-vue -g
// 初始化
$ parcel-vue project
  
$ cd project

$ npm install

配置vue.js 基本插件

  • vue-router
  • vuex
  • less

运行

npm run dev

打包

npm run build

parecl官网

https://parceljs.org/getting_started.html 中文文档非常好

项目地址

https://github.com/w3c-king/parcel-vue