chore(AddressEdit): use createCommentVNode instead of h

This commit is contained in:
chenjiahan 2021-01-11 20:12:09 +08:00
parent ec1aef91de
commit dc93ef3f20

View File

@ -1,4 +1,11 @@
import { h, ref, watch, computed, nextTick, reactive } from 'vue'; import {
ref,
watch,
computed,
nextTick,
reactive,
createCommentVNode,
} from 'vue';
// Utils // Utils
import { createNamespace, isObject } from '../utils'; import { createNamespace, isObject } from '../utils';
@ -282,7 +289,7 @@ export default createComponent({
); );
} }
return h(); return createCommentVNode();
}; };
useExpose({ useExpose({