(vite) feature flow as a VueJS app

This commit is contained in:
Julien Calixte
2023-07-21 00:25:17 +02:00
parent 64eaf8dfd8
commit 390f34012e
10 changed files with 1783 additions and 126 deletions

5
src/shims-vue.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
declare module '*.vue' {
import { defineComponent } from 'vue'
const component: ReturnType<typeof defineComponent>
export default component
}