diff --git a/packages/babel-plugin-jsx/src/utils.ts b/packages/babel-plugin-jsx/src/utils.ts index 4e28ea4..e8230d7 100644 --- a/packages/babel-plugin-jsx/src/utils.ts +++ b/packages/babel-plugin-jsx/src/utils.ts @@ -1,8 +1,8 @@ import * as t from '@babel/types'; import { type NodePath } from '@babel/traverse'; +import { isHTMLTag , isSVGTag } from '@vue/shared' import type { State } from './interface'; import SlotFlags from './slotFlags'; -import { isHTMLTag , isSVGTag } from '@vue/shared' export const JSX_HELPER_KEY = 'JSX_HELPER_KEY'; export const FRAGMENT = 'Fragment'; export const KEEP_ALIVE = 'KeepAlive';