처음 nuxt.js/nuxt-property-decorator를 도입하는 방법

기본적으로 사용하는 것은 VC

구성 요소를 활용하기 위해 Nuxt.js를 빌드하면,
아래의 명령을 넣어 Typescript의 도입 환경을 정돈한다.

1. 빌더 설정
yarn add nuxt-property-decorator
참조 : htps : // TY PSC pt. 없는 xtjs. rg/쟈/구이데/세츠 p. HTML # % 3 % 82 % 4 % 3 % 83 % B3 % 3 % 82 % B9 % 3 % 83 % 88 % 3 % 83 % BC % 3 % 83 % A B
2. decorator 설정
yarn add nuxt-property-decorator

조속히 간단한 코드를 typescript로 만들어 본다.

Nuxt.js/Vuetify/Typescript
<template>
  <v-content>
    <v-row>
      <p>名前:{{name}}</p>
      <p>年齢:{{age}}</p>
      <p>出身地:{{country}}</p>
      <p>3倍の値は:{{triple}}</p>
    </v-row>
    <template>
      <button @click="onClickButton">このボタンを押してぴょん</button>
    </template>
  </v-content>
</template>

<script lang="ts">
import { Component, Vue } from "nuxt-property-decorator";

@Component
export default class index extends Vue {
  public name: string = "taro";
  public age: number = 24;
  public country: string = "日本";
  public score: number = 55;

  get triple() {
    return this.score * 3;
  }

  public onClickButton() {
    alert("よっしゃ!");
  }
}
</script>



이것으로, 우선, Nuxt.js에의 Typescript 도입은 완료

좋은 웹페이지 즐겨찾기