@@ -12,6 +12,6 @@
</head>
<body>
<div id="app"></div>
- <script src="./src/main.js" type="module"></script>
+ <script src="./src/main.ts" type="module"></script>
</body>
</html>
@@ -0,0 +1,6 @@
+/* eslint-disable */
+declare module '*.vue' {
+ import type { DefineComponent } from 'vue'
+ const component: DefineComponent<{}, {}, any>
+ export default component
+}