Skip to content

Commit d1ba77f

Browse files
authored
feat: cr fixes
1 parent 4729bee commit d1ba77f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/guide/introduction.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ createApp({
6363
```vue-html
6464
<div id="app">
6565
<button @click="count++">
66-
Count is: {{ count }}
66+
Licznik to: {{ count }}
6767
</button>
6868
</div>
6969
```
@@ -77,7 +77,7 @@ const count = ref(0)
7777

7878
<div class="demo">
7979
<button @click="count++">
80-
Count is: {{ count }}
80+
Licznik to: {{ count }}
8181
</button>
8282
</div>
8383

@@ -128,7 +128,7 @@ export default {
128128
</script>
129129
130130
<template>
131-
<button @click="count++">Podliczenie to: {{ count }}</button>
131+
<button @click="count++">Licznik to: {{ count }}</button>
132132
</template>
133133
134134
<style scoped>
@@ -148,7 +148,7 @@ const count = ref(0)
148148
</script>
149149
150150
<template>
151-
<button @click="count++">Podliczenie to: {{ count }}</button>
151+
<button @click="count++">Licznik to: {{ count }}</button>
152152
</template>
153153
154154
<style scoped>
@@ -193,13 +193,13 @@ export default {
193193
// cyklu życia komponentu.
194194
// Ta funkcja zostanie wywołana, gdy komponent zostanie zamontowany.
195195
mounted() {
196-
console.log(`Początkowe podliczenie to ${this.count}.`)
196+
console.log(`Początkowe Licznik to ${this.count}.`)
197197
}
198198
}
199199
</script>
200200
201201
<template>
202-
<button @click="increment">Podliczenie to: {{ count }}</button>
202+
<button @click="increment">Licznik to: {{ count }}</button>
203203
</template>
204204
```
205205

@@ -225,12 +225,12 @@ function increment() {
225225
226226
// lifecycle hooks
227227
onMounted(() => {
228-
console.log(`Początkowe podliczenie to ${count.value}.`)
228+
console.log(`Początkowe Licznik to ${count.value}.`)
229229
})
230230
</script>
231231
232232
<template>
233-
<button @click="increment">Podliczenie to: {{ count }}</button>
233+
<button @click="increment">Licznik to: {{ count }}</button>
234234
</template>
235235
```
236236

0 commit comments

Comments
 (0)