mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-08 19:22:57 +00:00

Update zh-cn.yaml (#194) Address #184 build assets Update zh-cn.yaml (#194) Former-commit-id: 4572f93371647c0a6b53cc375ec5bb00356a37c9 [formerly e58e4793ac0ca6915b605d7b2a8a77f0aec31172] [formerly 43635f6b98f546ec0e2656d26031388aef63a902 [formerly da4fd84002f4cac1d4e04f65c96237a553203d83]] Former-commit-id: 15422887ad29dea63bdf861d9da8f8d28b4fbc8f [formerly 3949ffa499cf999c3f4b50ee18802c0f87a23807] Former-commit-id: fac5ceeee3fa969239d9ef5e04ef5542a61d2761
22 lines
435 B
Vue
22 lines
435 B
Vue
<template>
|
|
<button @click="show"
|
|
:aria-label="$t('buttons.schedule')"
|
|
:title="$t('buttons.schedule')"
|
|
id="schedule-button"
|
|
class="action">
|
|
<i class="material-icons">alarm</i>
|
|
<span>{{ $t('buttons.schedule') }}</span>
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'schedule-button',
|
|
methods: {
|
|
show: function (event) {
|
|
this.$store.commit('showHover', 'schedule')
|
|
}
|
|
}
|
|
}
|
|
</script>
|