Skip to content

Commit

Permalink
Merge pull request #178 from madogiwa0124/fixed-typo-for-minimum-reac…
Browse files Browse the repository at this point in the history
…tive-based-on-these-let-s-implement-it

Fixed typo and removed unnecessary characters.
  • Loading branch information
ubugeeei authored Nov 12, 2023
2 parents a131b06 + eaa6b71 commit 2704242
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -397,10 +397,10 @@ increment では `state.count` を書き換えているので `setter` が実行

一番難しいところは上記までの理解なので、理解ができればあとはソースコードを書くだけです。
とは言っても、実際のところどうなってるのかよく分からず上記だけでは理解ができない方もいるでしょう。
そんな方も一旦ここで実装してみましょう。それから実際のコードを読みながら先ほどのセクションを見返してもらえてらと思います!
そんな方も一旦ここで実装してみましょう。それから実際のコードを読みながら先ほどのセクションを見返してもらえたらと思います!

まずは必要なファイルを作ります。`packages/reactivity`に作っていきます。
ここでも本家 Vue の構成をなるべく意識します。˝
ここでも本家 Vue の構成をなるべく意識します。

```sh
pwd # ~
Expand All @@ -416,7 +416,7 @@ touch packages/reactivity/baseHandler.ts

例の如く、index.ts は export しているだけなので特に説明はしません。reactivity 外部パッケージから使いたくなったものはここから export しましょう。

deps.ts からです。
dep.ts からです。

```ts
import { type ReactiveEffect } from "./effect";
Expand Down

0 comments on commit 2704242

Please sign in to comment.