Skip to content

Commit

Permalink
chore: lang-ts
Browse files Browse the repository at this point in the history
  • Loading branch information
nxhawk committed Jun 20, 2024
1 parent e97fffa commit f78363e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import './style.css'
import App from './App.vue'
import router from './router'
import VueLazyLoad from 'vue3-lazyload'
import loading from "@/assets/avatarDefault.webp";

import './style.css'

const app = createApp(App)

app.use(createPinia())
Expand Down
2 changes: 1 addition & 1 deletion src/views/ExercisePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</div>
</template>

<script setup>
<script setup lang="ts">
import ListBox from "@/components/ListBox.vue";

Check failure on line 10 in src/views/ExercisePage.vue

View workflow job for this annotation

GitHub Actions / deploy

'ListBox' is declared but its value is never read.
import { useRoute } from 'vue-router';
import { computed, watch, reactive } from "vue";

Check failure on line 12 in src/views/ExercisePage.vue

View workflow job for this annotation

GitHub Actions / deploy

'computed' is declared but its value is never read.
Expand Down

0 comments on commit f78363e

Please sign in to comment.