PHP Classes

File: resources/assets/js/components/FilePreview.vue

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   Laravel Video Chat   resources/assets/js/components/FilePreview.vue   Download  
File: resources/assets/js/components/FilePreview.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Video Chat
Multiuser video chat using Socket.IO and WebRTC
Author: By
Last change:
Date: 6 years ago
Size: 352 bytes
 

Contents

Class file image Download
<template> <div class="col-md-3"> <img :src="file.file_details.webPath" alt="" class="img-responsive" :alt="file.name"> <a class="btn btn-success" :href="file.file_details.webPath" target="_blank" download :title="file.name">Download</a> </div> </template> <script> export default { props: ['file'] } </script>