Skip to content

Commit 2975244

Browse files
authored
Merge pull request #15 from tomoam/update-up-to-20230128
2023/01/28 迄の更新に追従
2 parents c22b319 + 213cb3a commit 2975244

File tree

55 files changed

+12390
-546
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+12390
-546
lines changed

content/tutorial/01-svelte/02-reactivity/02-reactive-declarations/app-a/src/lib/App.svelte

Lines changed: 0 additions & 12 deletions
This file was deleted.

content/tutorial/01-svelte/02-reactivity/02-reactive-declarations/app-b/src/lib/App.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
let count = 0;
33
$: doubled = count * 2;
44
5-
function handleClick() {
5+
function increment() {
66
count += 1;
77
}
88
</script>
99

10-
<button on:click={handleClick}>
10+
<button on:click={increment}>
1111
Clicked {count}
1212
{count === 1 ? 'time' : 'times'}
1313
</button>

content/tutorial/01-svelte/06-bindings/05-textarea-inputs/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
title: Textarea inputs
33
---
44

5-
> この練習問題は現時点では動作しません。代わりに、既存のチュートリアルをお試しください: https://svelte.jp/tutorial/textarea-inputs
6-
75
Svelteでは、`<textarea>`要素はtext inputと同じように振る舞います。`bind:value`を使ってみましょう。
86

97
```svelte

content/tutorial/01-svelte/06-bindings/05-textarea-inputs/app-a/node_modules/.bin/marked

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

content/tutorial/01-svelte/06-bindings/05-textarea-inputs/app-a/node_modules/marked/LICENSE.md

Lines changed: 44 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

content/tutorial/01-svelte/06-bindings/05-textarea-inputs/app-a/node_modules/marked/README.md

Lines changed: 99 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)