1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-02-25 09:54:24 -06:00

Fix/vue import error on intellij ()

* Fix fix labeler config ()

* fix vue import error

---------

Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
This commit is contained in:
おさむのひと 2023-12-09 13:13:31 +09:00 committed by GitHub
parent 319267e096
commit b7bdd45dba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
packages/frontend/vue-shims.d.ts vendored Normal file
View file

@ -0,0 +1,6 @@
/* eslint-disable */
declare module "*.vue" {
import { defineComponent } from "vue";
const component: ReturnType<typeof defineComponent>;
export default component;
}