girder / girder_web_components

Reusable Javascript and VueJS components for interacting with a Girder server.
https://gwc.girder.org
Apache License 2.0
16 stars 9 forks source link

Row slot #336

Closed subdavis closed 2 years ago

subdavis commented 2 years ago

Changes

The old slot was too narrowly scoped. Rather than maintain backward compatibility and have 2 named slots in exactly the same place, this introduces a breaking change:

Release

Release 3.2.0

Example Usage

Trivial example to make the text italicized.

<girder-file-manager>
    <template #row="props">
      <i>{{ props.item.name }}</i>
     </template>
</girder-file-manager>
cjh1 commented 2 years ago

Awesome!