| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「Vuetify」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
 
(同じ利用者による、間の1版が非表示)
1行目: 1行目:
==Vuetify==
+
==[[Vuetify]]==
[[Vue]]
+
[[Vue]] |
  
 
==Layout==
 
==Layout==
8行目: 8行目:
  
 
===v-card===
 
===v-card===
*Reference
+
*[[R]]eference
 
**https://vuetifyjs.com/ja/components/cards
 
**https://vuetifyjs.com/ja/components/cards
 
*Tutorial
 
*Tutorial

2020年2月16日 (日) 04:34時点における最新版

Vuetify

Vue |

Layout

v-icon

v-card

  1. <template>
  2. <v-container class="my-5">
  3. <v-layout row wrap>
  4. <v-flex xs12 sm6 md4 lg3 v-for="n in num" :key="n.key">
  5. <v-card flat class="text-xs-center ma-3">
  6. <v-responsive class="pt-4">
  7. image goes here
  8. </v-responsive>
  9. <v-card-tesxt>
  10. <div class="subheading">テンプレート:N.value</div>
  11. <div class="gray--text">hello</div>
  12. </v-card-tesxt>
  13. <v-card-action>
  14. <v-btn flat color="gray">
  15. <v-icon small left>message</v-icon>
  16. <span>message</span>
  17. </v-btn>
  18. </v-card-action>
  19. </v-card>
  20. </v-flex>
  21. </v-layout>
  22. </v-container>
  23. </template>
  24. <script>
  25.  
  26. export default {
  27. name: 'Home',
  28. data() {
  29. return {
  30. num: [
  31. {key:1,value:'one'},
  32. {key:2,value:'twe'},
  33. {key:3,value:'three'},
  34. {key:4,value:'four'},
  35. {key:5,value:'five'},
  36. ]
  37. }
  38. },

1338 v-card.png