Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mould-vuecli3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lhfe
mould-vuecli3
Commits
a714e97b
Commit
a714e97b
authored
Aug 31, 2020
by
lipengcheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: 文档万韩
完善文档
parent
533404f3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
README.md
README.md
+15
-1
No files found.
README.md
View file @
a714e97b
...
@@ -62,6 +62,8 @@ npm run prettier
...
@@ -62,6 +62,8 @@ npm run prettier
## 开发流程
## 开发流程
`develop`
: 开发分支
`develop`
: 开发分支
### 项目介绍
### 目录结构
### 目录结构
├── CHANGELOG.md // 更新日志
├── CHANGELOG.md // 更新日志
...
@@ -124,7 +126,19 @@ npm run prettier
...
@@ -124,7 +126,19 @@ npm run prettier
`global`
:全局组件,可能需要在多处引入使用
`global`
:全局组件,可能需要在多处引入使用
`common`
:公共组件,全局生效,但在app.vue中引入即可,无需多次引入使用
`common`
:公共组件,全局生效,但在app.vue中引入即可,无需多次引入使用
### layout布局使用
### 配置vuex
全局类的数据放在
`/src/store/global.js`
中。
模块化的数据放在
`/src/store/modules`
目录中,新建与模块对应的js文件即可,会自动引入并注册。注意,模块化js文件中
`namespaced`
属性必填。
### 配置vue-router
如果新增路由页面
`xxx.vue`
,在
`src/views`
目录下新增
`xxx.vue`
页面之后,在
`src/router`
目录下新增对应的路由配置文件
`xxx.router.js`
并将配置通过
`export default`
导出,配置方式与原有配置无异。导出后即可,会自动注册路由。
### layout布局组件使用
### 配置全局组件
在
`/src/components/global`
目录下添加
`.vue`
组件,并声明
`name`
属性即可,会自动引入并挂载到vue实例上。
注意,
`name`
属性必填,且
`name`
的值就是使用时的组件名称。
## Customize configuration
## Customize configuration
See
[
Configuration Reference
](
https://cli.vuejs.org/config/
)
.
See
[
Configuration Reference
](
https://cli.vuejs.org/config/
)
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment