mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-27 02:10:40 +01:00
chore: script setup order definition
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
<script lang="ts" setup>
|
<script setup lang="ts">
|
||||||
defineOptions({
|
defineOptions({
|
||||||
inheritAttrs: false
|
inheritAttrs: false
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ export interface FormFieldSlots {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script setup lang="ts">
|
||||||
import { computed, ref, inject, provide, type Ref } from 'vue'
|
import { computed, ref, inject, provide, type Ref } from 'vue'
|
||||||
import { Label } from 'radix-vue'
|
import { Label } from 'radix-vue'
|
||||||
import { useId } from '#imports'
|
import { useId } from '#imports'
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ export interface InputSlots {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script setup lang="ts">
|
||||||
import { ref, computed, onMounted } from 'vue'
|
import { ref, computed, onMounted } from 'vue'
|
||||||
import { useButtonGroup } from '../composables/useButtonGroup'
|
import { useButtonGroup } from '../composables/useButtonGroup'
|
||||||
import { useComponentIcons } from '../composables/useComponentIcons'
|
import { useComponentIcons } from '../composables/useComponentIcons'
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<script lang="ts" setup>
|
<script setup lang="ts">
|
||||||
import { inject } from 'vue'
|
import { inject } from 'vue'
|
||||||
import { useModal, modalInjectionKey } from '../composables/useModal'
|
import { useModal, modalInjectionKey } from '../composables/useModal'
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<script lang="ts" setup>
|
<script setup lang="ts">
|
||||||
import { inject } from 'vue'
|
import { inject } from 'vue'
|
||||||
import { slideoverInjectionKey, useSlideover } from '../composables/useSlideover'
|
import { slideoverInjectionKey, useSlideover } from '../composables/useSlideover'
|
||||||
|
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ export interface TextareaSlots {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script setup lang="ts">
|
||||||
import { ref, computed, onMounted, nextTick, watch } from 'vue'
|
import { ref, computed, onMounted, nextTick, watch } from 'vue'
|
||||||
import { useFormField } from '../composables/useFormField'
|
import { useFormField } from '../composables/useFormField'
|
||||||
import { looseToNumber } from '../utils'
|
import { looseToNumber } from '../utils'
|
||||||
|
|||||||
Reference in New Issue
Block a user