update dependencies
This commit is contained in:
parent
0374940c77
commit
5110058674
4 changed files with 549 additions and 468 deletions
|
@ -30,5 +30,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"vuedraggable": "^2.23.2"
|
"vuedraggable": "^2.23.2"
|
||||||
},
|
},
|
||||||
"pre-commit": ["precommit"]
|
"pre-commit": [
|
||||||
|
"precommit"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,8 +9,9 @@
|
||||||
v-for="option in optGroup.options"
|
v-for="option in optGroup.options"
|
||||||
:value="option.value"
|
:value="option.value"
|
||||||
:selected="selectedValue && option.value === selectedValue"
|
:selected="selectedValue && option.value === selectedValue"
|
||||||
>{{ getLabel(option.label) }}</option
|
|
||||||
>
|
>
|
||||||
|
{{ getLabel(option.label) }}
|
||||||
|
</option>
|
||||||
</optgroup>
|
</optgroup>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -8,8 +8,9 @@
|
||||||
v-for="option in options"
|
v-for="option in options"
|
||||||
:value="option.value"
|
:value="option.value"
|
||||||
:selected="selectedValue && option.value === selectedValue"
|
:selected="selectedValue && option.value === selectedValue"
|
||||||
>{{ getLabel(option.label) }}</option
|
|
||||||
>
|
>
|
||||||
|
{{ getLabel(option.label) }}
|
||||||
|
</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in a new issue