Skip to content

Commit 046afa7

Browse files
committed
fix(i18n): add missing import
1 parent 2638bb9 commit 046afa7

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

src/components/PrimeOutputBoolean.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<script setup lang='ts'>
2+
import { useI18n } from 'vue-i18n'
23
import { useFormKitIcon, useFormKitOutput } from '../composables'
34
45
const props = defineProps({

src/components/PrimeOutputDate.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<script setup lang='ts'>
2+
import { useI18n } from 'vue-i18n'
3+
import { computed } from 'vue'
24
import { useFormKitIcon, useFormKitOutput } from '../composables'
35
46
const props = defineProps({

src/components/PrimeOutputNumber.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<script setup lang='ts'>
2+
import { useI18n } from 'vue-i18n'
3+
24
import { useFormKitIcon, useFormKitOutput } from '../composables'
35
46
const props = defineProps({

0 commit comments

Comments
 (0)