Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorczmj <clarazmjordan@gmail.com>2019-07-01 07:50:10 +0300
committerEvan Read <eread@gitlab.com>2019-07-01 07:50:10 +0300
commitb1619b8340da4b213e19d1e6edce29b7137e6eda (patch)
tree6d664ef81bab33e124c868f68fbc612210b5ccbc
parent59e50f003dcb4d89796817adb7aeb3125f831ad3 (diff)
Docs: minor fix to link format
-rw-r--r--doc/development/fe_guide/vue.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/fe_guide/vue.md b/doc/development/fe_guide/vue.md
index 8c6a73c6824..020eede8a03 100644
--- a/doc/development/fe_guide/vue.md
+++ b/doc/development/fe_guide/vue.md
@@ -123,7 +123,7 @@ Check this [page](vuex.md) for more details.
### Mixing Vue and jQuery
- Mixing Vue and jQuery is not recommended.
-- If you need to use a specific jQuery plugin in Vue, [create a wrapper around it][https://vuejs.org/v2/examples/select2.html].
+- If you need to use a specific jQuery plugin in Vue, [create a wrapper around it](https://vuejs.org/v2/examples/select2.html).
- It is acceptable for Vue to listen to existing jQuery events using jQuery event listeners.
- It is not recommended to add new jQuery events for Vue to interact with jQuery.