新建文件夹parcel-vue
yarn init -y //初始化package.json
安装依赖
yarn add vue parcel-bundler vue-template-compiler
新建index.html
//index.htmlDocument
新建文件夹src,src下新建index.js、app.vue
//index.jsimport Vue from 'vue'import App from './app.vue'new Vue({ el: '#root', render: h => h(App)})
//app.vue{ {demo}}
使用parcel打包
parcel index.html