10
13

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.

Vuetify v-data-tableのslotの探検

Posted at

デフォルトの表示

単純にデータを渡して、v-data-tableで表するとこのような表示になります
image.png

Slotの働き調査

item.<name> slotを使うことで表示を変更できます。試しに"AAA"を指定すると
manufactureの列がAAAになりました。

<template>
  <div>
    <v-data-table :headers="headers" :items="desserts">
      <template v-slot:item.manufacture>
        AAA
      </template>
    </v-data-table>
  </div>
</template>

image.png

特定の列の表示方法を変更する

試しに、メーカ名の前にiconを付加してみます。データの値は、props.item.manufactureに格納されています。
propsの部分は、v-slot:item.manufacture="XXX" の"XXX" 部分と同じ文字にします。

<template>
  <div>
    <v-data-table :headers="headers" :items="desserts">
      <template v-slot:item.manufacture="props">
        <v-icon>mdi-home</v-icon>{{props.item.manufacture}}
      </template>
    </v-data-table>
  </div>
</template>

予想通りの結果が得られました。
image.png

データをEditできるようにする

Editできるようにする列のslotにv-edit-dialogを指定するとデータを編集できるようになります。
v-edit-dialogのinput slotに入力に使用するコンポーネントを指定する必要があります。
この例ではv-text-fieldを使い、type="Number"(数値入力用)を指定しいます。
v-model.number="props.item.quantity" の様に.numberを付けておくと、入力値が数値して扱われるので、001のような入力をしても1に変換されるようになります。

<template>
  <div>
    <v-data-table :headers="headers" :items="desserts">
      <template v-slot:item.quantity="props">
        <v-edit-dialog
          :return-value.sync="props.item.quantity"
        >
          {{ props.item.quantity }}
          <template v-slot:input>
            <v-text-field
              v-model.number="props.item.quantity"
              label="Edit"
              single-line
              type="Number"
            ></v-text-field>
          </template>
        </v-edit-dialog>
      </template>
    </v-data-table>
  </div>
</template>

image.png

10
13
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
10
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?