From 08f07d119e0cc585091119a14fc459d10b61dbed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B4=AE=E7=94=9F?= <2234839456@qq.com> Date: Wed, 26 Feb 2025 08:07:20 +0000 Subject: [PATCH] clean code --- packages/babel-plugin-jsx/src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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';