Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 3.52 KB

File metadata and controls

39 lines (30 loc) · 3.52 KB

Simple Vue 上級 #this #application #vue

by Anthony Fu @antfu

挑戦する    English 简体中文 Português (BR)

Vue ライクな型付けの簡略化されたバージョンを実装してください。

関数名 SimpleVue (Vue.extenddefineComponent のようなもの) を与えることで、computed や methods の中の this 型を適切に推論できます。

この課題では、SimpleVue が datacomputedmethods フィールドを持つオブジェクトを唯一の引数として受け取れることにします。

  • data はコンテキスト this を公開するオブジェクトを返す単純な関数ですが、自身や算出プロパティ、メソッドにアクセスできません。

  • computed は、コンテキストを this として受け取り何らかの計算をし、その結果を返す関数のオブジェクトです。計算された結果は、関数ではなくプレーンな戻り値としてコンテキストに公開されなければなりません。

  • methods は同様に this をコンテキストとする関数のオブジェクトです。メソッドは他の methods と同様に datacomputedmethods で公開されているフィールドにアクセスできます。computed と異なるのは、method がそのまま関数として公開されている点です。

SimpleVue の戻り値の型は任意です。

const instance = SimpleVue({
  data() {
    return {
      firstname: 'Type',
      lastname: 'Challenges',
      amount: 10,
    }
  },
  computed: {
    fullname() {
      return this.firstname + ' ' + this.lastname
    }
  },
  methods: {
    hi() {
      alert(this.fullname.toLowerCase())
    }
  }
})

戻る 解答を共有 解答を確認

関連する課題

213・Vue Basic Props