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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-10-11 12:10:43 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-10-11 12:10:43 +0300
commit988375009f3393c7db4944b707b9989d6e9b794e (patch)
tree7bdc731d3c7c863a1fd9f01a73f3757decf910f1 /doc/development
parent764f81209f7bd872568462267aea12325e69b1be (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development')
-rw-r--r--doc/development/fe_guide/vue.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/fe_guide/vue.md b/doc/development/fe_guide/vue.md
index e89012cf93a..00d9588d087 100644
--- a/doc/development/fe_guide/vue.md
+++ b/doc/development/fe_guide/vue.md
@@ -408,11 +408,11 @@ export function useCount(initialValue) {
const count = ref(initialValue)
function incrementCount() {
- ref.value += 1
+ count.value += 1
}
function decrementCount() {
- ref.value -= 1
+ count.value -= 1
}
return { count, incrementCount, decrementCount }