mirror of
https://gitee.com/y_project/RuoYi-Vue.git
synced 2026-01-04 02:45:29 +08:00
remove all semicolons
This commit is contained in:
@ -57,7 +57,7 @@ export default {
|
||||
methods: {
|
||||
hasOneShowingChild(children = [], parent) {
|
||||
if (!children) {
|
||||
children = [];
|
||||
children = []
|
||||
}
|
||||
const showingChildren = children.filter(item => {
|
||||
if (item.hidden) {
|
||||
@ -89,7 +89,7 @@ export default {
|
||||
return this.basePath
|
||||
}
|
||||
if (routeQuery) {
|
||||
let query = JSON.parse(routeQuery);
|
||||
let query = JSON.parse(routeQuery)
|
||||
return { path: path.resolve(this.basePath, routePath), query: query }
|
||||
}
|
||||
return path.resolve(this.basePath, routePath)
|
||||
|
||||
Reference in New Issue
Block a user