You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
1.2 KiB
Markdown
21 lines
1.2 KiB
Markdown
3 years ago
|
|-- HELLO_WORLD 项目名称
|
||
|
|-- node_modules 依赖文件
|
||
|
|-- public 静态资源
|
||
|
| |-- favicon.ico 页面tab图标
|
||
|
| |-- index.html 挂载的页面
|
||
|
|-- src 主要开发的源码
|
||
|
|-- App.vue 根组件
|
||
|
|-- main.js 整个项目的入口,引入依赖包、默认页面样式等
|
||
|
|-- assets 资源文件
|
||
|
| |-- logo.png
|
||
|
|-- components 公共组件
|
||
|
|-- HelloWorld.vue
|
||
|
|-- .browserslistrc 浏览器约定(可写到package.json中去)
|
||
|
|-- .eslintrc.js eslint配置(可写到package.json中去)
|
||
|
|-- .gitignore 提交忽略文件配置
|
||
|
|-- babel.config.js babel配置文件(使es6+向后兼容适配浏览器的js环境)
|
||
|
|-- jsconfig.json
|
||
|
|-- package-lock.json 版本锁定文件
|
||
|
|-- package.json 版本信息
|
||
|
|-- README.md
|
||
|
|-- vue.config.js webpack相关配置(vue)
|