Add files via upload

This commit is contained in:
niubility000 2021-09-23 08:11:41 +08:00 committed by GitHub
parent 0426629a59
commit e9e972154b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,7 @@
<router-link
class="action"
to="/files/"
@click.native="refresh"
:aria-label="$t('sidebar.myFiles')"
:title="$t('sidebar.myFiles')"
>
@ -37,6 +38,7 @@
<router-link
class="action"
to="/settings"
@click.native="refresh"
:aria-label="$t('sidebar.settings')"
:title="$t('sidebar.settings')"
>
@ -128,6 +130,10 @@ export default {
help() {
this.$store.commit("showHover", "help");
},
refresh:function(){
this.$router.go(0);
},
logout: auth.logout,
},
};