http tab more or less done
This commit is contained in:
parent
5aed9a20b8
commit
c4f83808b0
7 changed files with 310 additions and 0 deletions
|
|
@ -18,6 +18,10 @@ export default {
|
|||
type: [String, Array],
|
||||
required: false
|
||||
},
|
||||
descriptionPathOverride: {
|
||||
type: [String, Array],
|
||||
required: false
|
||||
},
|
||||
suggestions: {
|
||||
type: [String, Array],
|
||||
required: false
|
||||
|
|
@ -236,7 +240,9 @@ export default {
|
|||
},
|
||||
descriptionPath () {
|
||||
if (this.path == null) return null
|
||||
if (this.descriptionPathOverride) return this.descriptionPathOverride
|
||||
const path = Array.isArray(this.path) ? this.path : this.path.split('.')
|
||||
console.log(this.path, this.subgroup)
|
||||
if (this.subgroup) {
|
||||
return [
|
||||
...path.slice(0, path.length - 1),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue