Merge pull request #944 from nabaonan/fix-select

fix: option.tag undefined cause select error
This commit is contained in:
Aresn 2021-09-17 15:14:27 +08:00 committed by GitHub
commit 727a985ab1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -119,7 +119,7 @@
const findOptionsInVNode = (node) => {
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 [];
const children = [...(node.children || []), ...(opts && opts.children || [])];
const options = children.reduce(
@ -464,7 +464,7 @@
const cOptions = option.componentOptions;
if (!cOptions) continue;
if (cOptions.tag.match(optionGroupRegexp)){
if (optionGroupRegexp.test(cOptions.tag)){
let children = cOptions.children;
// remove filtered children