Skip to content

Commit 4e746ae

Browse files
committed
style(linting): Fix lint problems
1 parent d7a257b commit 4e746ae

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

src/components/PrimeAutoComplete.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
import type { FormKitFrameworkContext } from '@formkit/core'
33
import type { AutoCompleteCompleteEvent, AutoCompleteProps } from 'primevue/autocomplete'
44
5-
import { type PropType, ref } from 'vue'
5+
import type { PropType } from 'vue'
6+
import { ref } from 'vue'
67
import { useFormKitInput } from '../composables'
78
89
export interface FormKitPrimeAutoCompleteProps {

src/components/PrimeOutputBoolean.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script setup lang='ts'>
22
import type { FormKitFrameworkContext } from '@formkit/core'
3-
import { computed, type PropType } from 'vue'
3+
import type { PropType } from 'vue'
4+
import { computed } from 'vue'
45
import { useI18n } from 'vue-i18n'
56
import { useFormKitSection } from '../composables'
67

src/components/PrimeOutputDate.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script setup lang='ts'>
22
import type { FormKitFrameworkContext } from '@formkit/core'
3-
import { computed, type PropType } from 'vue'
3+
import type { PropType } from 'vue'
4+
import { computed } from 'vue'
45
import { useI18n } from 'vue-i18n'
56
import { useFormKitSection } from '../composables'
67

src/components/PrimeOutputLink.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script setup lang='ts'>
22
import type { FormKitFrameworkContext } from '@formkit/core'
3-
import { computed, type PropType } from 'vue'
3+
import type { PropType } from 'vue'
4+
import { computed } from 'vue'
45
import { useFormKitSection } from '../composables'
56
67
const props = defineProps({

src/components/PrimeOutputNumber.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script setup lang='ts'>
22
import type { FormKitFrameworkContext } from '@formkit/core'
3-
import { computed, type PropType } from 'vue'
3+
import type { PropType } from 'vue'
4+
import { computed } from 'vue'
45
56
import { useI18n } from 'vue-i18n'
67
import { useFormKitSection } from '../composables'

src/components/PrimeOutputReference.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script setup lang='ts'>
22
import type { FormKitFrameworkContext } from '@formkit/core'
3-
import { computed, type PropType } from 'vue'
3+
import type { PropType } from 'vue'
4+
import { computed } from 'vue'
45
import { useFormKitSection } from '../composables'
56
67
const props = defineProps({

0 commit comments

Comments
 (0)