Skip to content

Commit

Permalink
fix typo (DON -> DOM) (#1991)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yumamama00 committed Apr 20, 2024
1 parent 7b3cbc6 commit 8a2f3e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/guide/built-ins/transition.md
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ JavaScript で `<Transition>` コンポーネントのイベントを購読す
// 要素の "enter-from" 状態を設定するために使用する
function onBeforeEnter(el) {}

// 要素が DON に挿入された次のフレームで呼ばれる
// 要素が DOM に挿入された次のフレームで呼ばれる
// アニメーションを開始するときに使用する
function onEnter(el, done) {
// トランジションの終了を示すために done コールバックを呼ぶ
Expand Down Expand Up @@ -397,7 +397,7 @@ export default {
// 要素の "enter-from" 状態を設定するために使用する
onBeforeEnter(el) {},

// 要素が DON に挿入された次のフレームで呼ばれる
// 要素が DOM に挿入された次のフレームで呼ばれる
// アニメーションを開始するときに使用する
onEnter(el, done) {
// トランジションの終了を示すために done コールバックを呼ぶ
Expand Down

0 comments on commit 8a2f3e7

Please sign in to comment.