Skip to content

Commit c5d87d9

Browse files
committed
fix(components): add missing import
1 parent b13acef commit c5d87d9

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

src/components/FormKitDataEdit.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 { ref } from 'vue'
23
import FormKitDebug from './FormKitDebug.vue'
34
45
const props = defineProps({

src/components/FormKitDataView.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 { ref } from 'vue'
23
import FormKitDebug from './FormKitDebug.vue'
34
45
const props = defineProps({

src/components/PrimeOutputBoolean.vue

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

src/components/PrimeOutputNumber.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<script setup lang='ts'>
22
import { useI18n } from 'vue-i18n'
3+
import { computed } from 'vue'
34
45
import { useFormKitIcon, useFormKitOutput } from '../composables'
56

0 commit comments

Comments
 (0)