Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
1e92f8b6
Commit
1e92f8b6
authored
Apr 21, 2017
by
Filipa Lacerda
Committed by
Phil Hughes
Apr 21, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add help regarding vue resource and where to include it
parent
f97d818c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
1 deletion
+17
-1
doc/development/fe_guide/vue.md
doc/development/fe_guide/vue.md
+17
-1
No files found.
doc/development/fe_guide/vue.md
View file @
1e92f8b6
...
@@ -103,6 +103,21 @@ The Service is a class used only to communicate with the server.
...
@@ -103,6 +103,21 @@ The Service is a class used only to communicate with the server.
It does not store or manipulate any data. It is not aware of the store or the components.
It does not store or manipulate any data. It is not aware of the store or the components.
We use
[
vue-resource
][
vue-resource-repo
]
to communicate with the server.
We use
[
vue-resource
][
vue-resource-repo
]
to communicate with the server.
Vue Resource should only be imported in the service file.
```
javascript
import
Vue
from
'
vue
'
;
import
VueResource
from
'
vue-resource
'
;
Vue
.
use
(
VueResource
);
```
### CSRF token
We use a Vue Resource interceptor to manage the CSRF token.
`app/assets/javascripts/vue_shared/vue_resource_interceptor.js`
holds all our common interceptors.
Note: You don't need to load
`app/assets/javascripts/vue_shared/vue_resource_interceptor.js`
since it's already being loaded by
`common_vue.js`
.
### End Result
### End Result
The following example shows an application:
The following example shows an application:
...
@@ -288,7 +303,8 @@ new Vue({
...
@@ -288,7 +303,8 @@ new Vue({
```
```
The
[
issue boards service
][
issue-boards-service
]
is a good example of this pattern.
The
[
issue boards service
][
issue-boards-service
]
is a good example of this pattern.
## Style guide
## Style guide
...
...
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