feat: unplugin-vue-router, prettier, eslint, .gitattributes

This commit is contained in:
Benjamin Singleton 2025-05-13 15:24:17 -05:00
parent 0d98f11e21
commit 53c6efa701
24 changed files with 3175 additions and 169 deletions

10
src/shims-vue.d.ts vendored
View file

@ -1,5 +1,5 @@
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
declare module "*.vue" {
import type { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
export default component;
}