You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
883 B

3 years ago
3 years ago
3 years ago
  1. <urban-filemanager-directory>
  2. <div class="file-table__row">
  3. <div class="file-table__column file-table__column--select" onchange={ (event) => { props.handleMarked(event, this) } }>
  4. <input type="checkbox" value="true" />
  5. </div>
  6. <div class="file-table__column file-table__column--filename" onclick={ (event) => { props.handleClick(event, props.file.filename) } }>
  7. <svg class="icon fill-primary mr-2" aria-hidden="true">
  8. <use xlink:href="/symbol-defs.svg#icon-folder"></use>
  9. </svg>
  10. { props.file.filename }
  11. </div>
  12. <div class="file-table__column file-table__column--date">
  13. <div class="file-table__inner has-text-right">{ props.file.meta.updated_at }</div>
  14. </div>
  15. </div>
  16. <script>
  17. export default {
  18. }
  19. </script>
  20. </urban-filemanager-directory>