0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

初めてのnuxt.js / nuxt-property-decoratorの導入方法

Last updated at Posted at 2020-07-04

基本的に使用しているのはVC

コンポーネントを利用するために、Nuxt.jsをビルドしたら、
下記のコマンドを入れ、Typescriptの導入環境を整える。

1.builderの設定
yarn add nuxt-property-decorator
参照:https://typescript.nuxtjs.org/ja/guide/setup.html#%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB
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>

スクリーンショット (9).png

これでとりあえず、Nuxt.jsへのTypescript導入は完了

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?