Blame view

src/components/widgets/card/PostImage.vue 438 Bytes
ade01719f   Jatinder Singh   change
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  <template>
    <v-card>
  
      <v-card-media src="/static/nature/n3.jpeg" class="white--text">
      <v-card-text>
   
      <v-divider></v-divider>
      <v-toolbar card color="white">
          <v-text-field
          flat
          solo
          label="Comment here"
          append-icon="photo_camera"
          hide-details=""
          ></v-text-field>
      </v-toolbar>
    </v-card>
  </template>
  
  <script>
  export default {
  
  
  
  };
  </script>
  
  <style>
  
  </style>