🏗️ 1-2. クラスコンポーネントと Composition API の思想と違い

✅ 要点まとめ


🏛️ 詳細な説明

🟦 クラスコンポーネントの考え方

// クラスコンポーネントの例
@Component
export default class MyComponent extends Vue {
  @Prop() readonly title!: string;

  count = 0;

  get doubleCount() {
    return this.count * 2;
  }

  mounted() {
    console.log(this.title);
  }
}


🟩 Composition API の考え方