Skip to content
Snippets Groups Projects
Commit 9606ba04 authored by syuilo's avatar syuilo
Browse files

fix(client): support v-if of select component

parent 50e3ca19
No related branches found
No related tags found
No related merge requests found
......@@ -145,6 +145,8 @@ const onClick = (ev: MouseEvent) => {
} else if (Array.isArray(vnode.children)) { // 何故かフラグメントになってくることがある
const fragment = vnode;
scanOptions(fragment.children);
} else if (vnode.props == null) { // v-if で条件が false のときにこうなる
// nop?
} else {
const option = vnode;
pushOption(option);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment