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.
 
 
 
 
 

23 lines
883 B

<urban-filemanager-directory>
<div class="file-table__row">
<div class="file-table__column file-table__column--select" onchange={ (event) => { props.handleMarked(event, this) } }>
<input type="checkbox" value="true" />
</div>
<div class="file-table__column file-table__column--filename" onclick={ (event) => { props.handleClick(event, props.file.filename) } }>
<svg class="icon fill-primary mr-2" aria-hidden="true">
<use xlink:href="/symbol-defs.svg#icon-folder"></use>
</svg>
{ props.file.filename }
</div>
<div class="file-table__column file-table__column--date">
<div class="file-table__inner has-text-right">{ props.file.meta.updated_at }</div>
</div>
</div>
<script>
export default {
}
</script>
</urban-filemanager-directory>