Skip to content

Commit 6946ab7

Browse files
kotafujishiroyuki-minasplendentengo-ni
authored
Epic/mid session enhancements (#282)
* ディレクトリ名修正 (#268) * feat: add error handling page (#269) * feat: add error handling page * fix: add files to solutions * Feature/conflict fix (#272) * fix: ordering files (#271) * ディレクトリ名修正に伴うコンフリクト解消 * fix: renumber directories for lifecycle content insertion (#275) lifecycleコンテンツを `04` として追加するため、以下のディレクトリ番号を繰り上げ: - 04.composition-api → 05.composition-api - 05.components → 06.components - 06.summary → 07.summary" * feat: add lifecycle content (#276) * fix: renumber directories for lifecycle content insertion lifecycleコンテンツを `04` として追加するため、以下のディレクトリ番号を繰り上げ: - 04.composition-api → 05.composition-api - 05.components → 06.components - 06.summary → 07.summary" * feat: add lifecycle content ライフサイクルフックに関するコンテンツを追加 * fix: renumber en directories and add lifecycle content placeholder lifecycle コンテンツを 04 として追加するため、英語版のディレクトリ番号を繰り上げ: - 04.lifecycle を追加 - 04.composition-api → 05.composition-api - 05.components → 06.components - 06.summary → 07.summary * en側のerror-handling移動漏れ修正 * enにhydration追加 * feat: add hydration content. (#281) Co-authored-by: KotaFujishiro <> --------- Co-authored-by: Hikaru Kobayashi <[email protected]> Co-authored-by: ngo-ni <[email protected]> Co-authored-by: kotafujishiro <[email protected]> * コンフリクト解消 * コンフリクト解消 --------- Co-authored-by: yuki-mina <[email protected]> Co-authored-by: Hikaru Kobayashi <[email protected]> Co-authored-by: ngo-ni <[email protected]> Co-authored-by: yuki-mina <[email protected]>
1 parent 72ac201 commit 6946ab7

File tree

72 files changed

+1688
-0
lines changed

Some content is hidden

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

72 files changed

+1688
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import type { GuideMeta } from '~/types/guides'
2+
3+
export const meta: GuideMeta = {
4+
startingFile: 'app.vue',
5+
features: {
6+
terminal: false,
7+
fileTree: false,
8+
navigation: false,
9+
},
10+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Vue Lifecycle Hooks
2+
3+
// TODO:
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import type { GuideMeta } from '~/types/guides'
2+
3+
export const meta: GuideMeta = {
4+
startingFile: 'app.vue',
5+
features: {
6+
terminal: false,
7+
fileTree: false,
8+
navigation: false,
9+
},
10+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Vue Composition API
2+
3+
// TODO:
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import type { GuideMeta } from '~/types/guides'
2+
3+
export const meta: GuideMeta = {
4+
startingFile: 'app.vue',
5+
features: {
6+
terminal: false,
7+
fileTree: false,
8+
navigation: false,
9+
},
10+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Components
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import type { GuideMeta } from '~/types/guides'
2+
3+
export const meta: GuideMeta = {
4+
startingFile: 'app.vue',
5+
features: {
6+
terminal: false,
7+
fileTree: false,
8+
navigation: false,
9+
},
10+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Vue Basics Summary
2+
3+
Great! You've learned the basics of Vue. If you are interested in learning more about Vue, check out the [official Vue documentation](https://vuejs.org/) for more in-depth guides and tutorials.
4+
5+
Up next, let's start to explore how Nuxt would make your development experience even better.

content/en/02.concepts/09.hydration/index.md

Whitespace-only changes.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<template>
2+
<CounterA />
3+
<CounterB />
4+
</template>

0 commit comments

Comments
 (0)