Skip to content

Commit 4822430

Browse files
authored
docs(pt): fix some typos in portuguese translation (#527)
1 parent d56d941 commit 4822430

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/content/pt/cookbook/plugins.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ Vue.prototype.$myInjectedFunction = (message: string) => console.log(message)
2626
```html
2727
<template>
2828
<div>
29-
<button @click="$myInjectedFunction()">Clique em mim !</button>
30-
<button @click="someMethod">Clique em mim !</button>
29+
<button @click="$myInjectedFunction()">Clique em mim!</button>
30+
<button @click="someMethod">Clique em mim!</button>
3131
</div>
3232
</template>
3333

@@ -36,7 +36,7 @@ import Vue from 'vue'
3636
3737
export default Vue.extend({
3838
mounted () {
39-
this.$myInjectedFunction('funciondo em mounted')
39+
this.$myInjectedFunction('funcionando em mounted')
4040
}
4141
})
4242
</script>
@@ -70,7 +70,7 @@ import Vue from 'vue'
7070
7171
export default Vue.extend({
7272
asyncData (context) {
73-
context.$myInjectedFunction('funciona no asyncData')
73+
context.$myInjectedFunction('funcionando em asyncData')
7474
}
7575
})
7676
</script>
@@ -125,7 +125,7 @@ export default Vue.extend({
125125
this.$myInjectedFunction('funcionando em mounted')
126126
},
127127
asyncData (context) {
128-
context.app.$myInjectedFunction('funcioando em asyncData')
128+
context.app.$myInjectedFunction('funcionando em asyncData')
129129
}
130130
})
131131
</script>

0 commit comments

Comments
 (0)