mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-27 18:40:39 +00:00
navigation through public folders
This commit is contained in:
@@ -90,7 +90,11 @@
|
||||
},
|
||||
methods: {
|
||||
goToFolder() {
|
||||
this.$router.push({name: 'Files', params: {id: this.nodes.id}})
|
||||
if (this.$router.currentRoute.name === 'Public') {
|
||||
this.$router.push({name: 'Public', params: {id: this.nodes.id}})
|
||||
} else {
|
||||
this.$router.push({name: 'Files', params: {id: this.nodes.id}})
|
||||
}
|
||||
},
|
||||
dragFinish() {
|
||||
// Move no selected item
|
||||
|
||||
Reference in New Issue
Block a user