fix: option.tag undefined cause select error
This commit is contained in:
parent
ce92e4add3
commit
e0bb81cbb6
1 changed files with 2 additions and 2 deletions
|
@ -119,7 +119,7 @@
|
||||||
|
|
||||||
const findOptionsInVNode = (node) => {
|
const findOptionsInVNode = (node) => {
|
||||||
const opts = node.componentOptions;
|
const opts = node.componentOptions;
|
||||||
if (opts && opts.tag.match(optionRegexp)) return [node];
|
if (opts && optionRegexp.test(opts.tag)) return [node];
|
||||||
if (!node.children && (!opts || !opts.children)) return [];
|
if (!node.children && (!opts || !opts.children)) return [];
|
||||||
const children = [...(node.children || []), ...(opts && opts.children || [])];
|
const children = [...(node.children || []), ...(opts && opts.children || [])];
|
||||||
const options = children.reduce(
|
const options = children.reduce(
|
||||||
|
@ -464,7 +464,7 @@
|
||||||
|
|
||||||
const cOptions = option.componentOptions;
|
const cOptions = option.componentOptions;
|
||||||
if (!cOptions) continue;
|
if (!cOptions) continue;
|
||||||
if (cOptions.tag.match(optionGroupRegexp)){
|
if (optionGroupRegexp.test(cOptions.tag)){
|
||||||
let children = cOptions.children;
|
let children = cOptions.children;
|
||||||
|
|
||||||
// remove filtered children
|
// remove filtered children
|
||||||
|
|
Loading…
Add table
Reference in a new issue