Home  >  Article  >  Web Front-end  >  How to configure vue scaffolding using parcel (detailed tutorial)

How to configure vue scaffolding using parcel (detailed tutorial)

亚连
亚连Original
2018-06-12 14:49:131498browse

parcel-vue is a VueJS rapid development scaffolding solution based on Parcel packaging tool. It is strongly recommended to use node8.0 or above. This article will introduce to you the relevant knowledge of the new packaging tool parcel zero-configuration vue development scaffolding. Interested friends should take a look at

parcel-vue, a VueJS rapid development scaffolding solution based on the Parcel packaging tool, which is very powerful It is recommended to use node8.0 or above

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

Initialize the project

$ git clone https://github.com/w3c-king/parcel-vue.git

Installation dependencies

$ cd parce-vue
$ npm install

where parcel-bundler is the main tool, For single files ending with vue, the file type needs to be processed separately. The parcel-plugin-vue plugin will generate the corresponding code through vueify, and parcel will automatically load the dependencies starting with parcel-plugin.

Run the development environment, open the browser http://localhost:1234 after successful operation to view the project

$ npm run dev

Package and compile

$ npm run build

Development

Directory structure

src
├── router
 ├── index.js
├── assets
 ├── logo.png
├── components
 ├── Hello
 ├── index.js
 ├── index.js
├── views
 ├── HelloWorld
  ├── images
   ├── logo.png
  ├── HelloWorld.vue
├── styles
 ├── common.css
├── store
 ├── global
  ├── global.js
  ├── index.js
 ├── index.js
├── app.vue
├── index.js

You only need to execute npm run dev and npm run build to develop and build.

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

How to implement webpack2 project packaging optimization in vue-cli

The difference between export and export default in es6 What?

How to encapsulate Swiper in Vue to implement image carousel

How to use ztree in vue (detailed tutorial)

How to implement waterfall flow plug-in using JS

The above is the detailed content of How to configure vue scaffolding using parcel (detailed tutorial). For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn