Skip to content

Commit

Permalink
fix(script): add missing languages
Browse files Browse the repository at this point in the history
  • Loading branch information
dargmuesli committed Oct 6, 2022
1 parent 4425295 commit d2abccc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nuxt/components/_/Breadcrumbs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const { t } = useI18n()
const queryString = computed(() => getQueryString(route.query))
</script>

<script>
<script lang="ts">
export default {
name: 'MaevsiBreadcrumbs',
}
Expand Down
2 changes: 1 addition & 1 deletion nuxt/components/loader/indicator/LoaderIndicatorPing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
</div>
</template>

<script setup>
<script setup lang="ts">
const { t } = useI18n()
</script>
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
</div>
</template>

<script setup>
<script setup lang="ts">
const { t } = useI18n()
</script>
2 changes: 1 addition & 1 deletion nuxt/components/loader/indicator/LoaderIndicatorText.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
</div>
</template>

<script setup>
<script setup lang="ts">
const { t } = useI18n()
</script>

0 comments on commit d2abccc

Please sign in to comment.