| 1 | <?php |
||
| 6 | class Image extends Column |
||
| 7 | { |
||
| 8 | protected $template = '<img v-img :width="value.width" :src="value.image" v-if="value.image">'; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | protected $imageWidth = '80px'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @return string |
||
| 17 | */ |
||
| 18 | public function getImageWidth() |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param string $width |
||
| 25 | * |
||
| 26 | * @return $this |
||
| 27 | */ |
||
| 28 | public function setImageWidth($width) |
||
| 34 | |||
| 35 | public function getModelValue() |
||
| 47 | } |
||
| 48 |