처음 nuxt.js/nuxt-property-decorator를 도입하는 방법
1652 단어 nuxt.jsTypeScriptVuetify
구성 요소를 활용하기 위해 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 도입은 완료
Reference
이 문제에 관하여(처음 nuxt.js/nuxt-property-decorator를 도입하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/pokoTan2525/items/7213e80c9c4d1be56c11텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)