Fix/vue import error on intellij (#12612)

* Fix fix labeler config (#8)

* 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;
}