7
2

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 5 years have passed since last update.

Vuetifyのv-messages

Posted at

Vuetifyにはv-messagesというメッセージ表示のコンポーネントがあります。
v-text-fieldなどでerror-messagessuccess-messagesを設定するとv-messagesコンポーネントを使って表示されます。
しかし、v-messages自体は公式サイトのドキュメントには説明がありません。
通常は他のコンポーネントに含まれる形で使われるからでしょう。
それでも、v-messages単体で使いたい場合もあります。
今回はv-messages単体での使い方をまとめました。

使用するVuetifyは、
v2.2.1
です。

$ vue create my-app
$ cd my-app/
$ vue add vuetify
$ npm run serve
スクリーンショット 2020-01-07 11.58.09.png

src/components/HelloWorld.vueを書き換えます。
v-messagespropsvalueがあります。
重要な点は、valueに渡されるデータは文字列の配列です:bell:
参照 (node_modules/vuetify/src/components/VMessages/VMessages.ts

src/components/HelloWorld.vue
<template>
  <v-container>
    <v-row>
      <v-col>
        <v-img
          :src="require('../assets/logo.svg')"
          class="my-3"
          contain
          height="200"
        ></v-img>
      </v-col>
    </v-row>
    <v-row>
      <v-col>
        <v-messages :value="messages"></v-messages>
      </v-col>
    </v-row>
  </v-container>
</template>

<script>
export default {
  name: 'HelloWorld',

  data: () => ({
    messages: [
      'Hello!!',
      'Good Bye!!',
      'Good Night.'
    ]
  }),
};
</script>
$ npm run serve
スクリーンショット 2020-01-07 12.18.17.png

Have a good Vuetify life:beer:

7
2
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
7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?