Vuetable-2: How to render image in vue-table

Created on 31 May 2017  路  6Comments  路  Source: ratiw/vuetable-2

It possible to render image in row ?

Please advice me. Thank a lot.

Most helpful comment

@paladosss Go once again through https://vuejs.org/v2/guide/components.html#Scoped-Slots so you can understand better.
In your case:

<template slot="image" scope="props">
        <div class="img-circle img-circle--size" v-bind:style="{backgroundImage: `url(${props.rowData.photo})`, backgroundSize: 'cover', backgroundPosition: 'center' }"></div>
      </template>

All 6 comments

You can easily achieve this with scoped slots
http://jsfiddle.net/z11fe07p/2029/

 <template slot="image" scope="props">
   <img src="https://cdn.auth0.com/blog/vuejs/vue-logo.png" alt="" width="50" height="50">
 </template>

fields: ['__slot:image']

In a real scenario you would have the image links in the json response from the server and you would reference the image something like this :src="props.rowData.imageLink"

@cristijora Thanks for your answer, It works !!

@cristijora But how to render if image link inside row???
image

Where could i get this link on photo???
<template slot="image" scope="props"> <div class="img-circle img-circle--size" v-bind:style="{backgroundImage: 'url(' + 'THERE IS URL OF PHOTO' + ')', backgroundSize: 'cover', backgroundPosition: 'center' }"></div> </template>

@paladosss Go once again through https://vuejs.org/v2/guide/components.html#Scoped-Slots so you can understand better.
In your case:

<template slot="image" scope="props">
        <div class="img-circle img-circle--size" v-bind:style="{backgroundImage: `url(${props.rowData.photo})`, backgroundSize: 'cover', backgroundPosition: 'center' }"></div>
      </template>

@cristijora Thank you very much! <3

what if the images are from database?

Was this page helpful?
0 / 5 - 0 ratings

Related issues

ericksongmr picture ericksongmr  路  5Comments

mix359 picture mix359  路  5Comments

legreco picture legreco  路  5Comments

hjJunior picture hjJunior  路  3Comments

chrislandeza picture chrislandeza  路  3Comments