
* Add reload setting The iOS PWA version does not allow you to reload the page - even with killing the app. This is useful for reloading new versions of the app (as well as solving bad transient state issues). * make href use #
24 lines
496 B
HTML
24 lines
496 B
HTML
<a {href} on:click="fire('click', event)" rel="prefetch" aria-label={ariaLabel || label} class="settings-list-button {className ? className : ''}">
|
|
<span>
|
|
{label}
|
|
</span>
|
|
</a>
|
|
<style>
|
|
.settings-list-button {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
}
|
|
.settings-list-button span {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
</style>
|
|
<script>
|
|
export default {
|
|
data: () => ({
|
|
ariaLabel: void 0,
|
|
className: void 0
|
|
})
|
|
}
|
|
</script>
|