From 51f08460b62a5ca76bcfacff6ebc8fbcdb6466a9 Mon Sep 17 00:00:00 2001 From: "Mr.Mao" <951416545@qq.com> Date: Tue, 9 May 2023 21:37:47 +0800 Subject: [PATCH] chore(composables): delete redundant imports --- src/components/stage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/stage.ts b/src/components/stage.ts index f6ce42d..f6eadfe 100644 --- a/src/components/stage.ts +++ b/src/components/stage.ts @@ -1,5 +1,5 @@ /* eslint-disable vue/one-component-per-file */ -import { defineComponent, h, inject, markRaw, onMounted, onUnmounted, provide, ref, renderSlot, warn, watch } from 'vue-demi' +import { defineComponent, h, inject, markRaw, onMounted, onUnmounted, ref, renderSlot, warn, watch } from 'vue-demi' import { throttle } from '@antfu/utils' import type { Container } from 'pixi.js' import { Application } from 'pixi.js'