作者:老谢2502887117 | 来源:互联网 | 2024-11-08 16:49
用vue init webpack启动了一个官方示例项目,npm run dev之后启动index.html的那网页,但是一直找不到那个main.js是在哪里被调用的。.├── src/│ ├──
用vue init webpack启动了一个官方示例项目,
npm run dev之后启动index.html的那网页,但是一直找不到那个main.js是在哪里被调用的。
.
├── src/
│ ├── main.js # app entry file
│ ├── App.vue # main app component
│ ├── components/ # ui components
│ │ └── ...
│ └── assets/ # module assets (processed by webpack)
│ └── ...
....
├── index.html # index.html template
└── package.json # build scripts and dependencies