fix(stage-ui): incorrect import

This commit is contained in:
Neko Ayaka
2026-01-07 21:43:09 +08:00
parent 583973adc2
commit 5c2218dd49
7 changed files with 8 additions and 8 deletions
@@ -4,8 +4,8 @@ import type { Ref } from 'vue'
import { ref } from 'vue'
import PropertyColor from './PropertyColor.vue'
import PropertyNumber from './PropertyNumber.vue'
import PropertyColor from './property-color.vue'
import PropertyNumber from './property-number.vue'
type DataPaneSchemaTypes
= | DataPaneSchemaNumber
@@ -1,7 +1,7 @@
<script setup lang="ts">
import type { DataType, Globals } from 'csstype'
import ColorPicker from './ColorPicker.vue'
import ColorPicker from './color-picker.vue'
const props = withDefaults(defineProps<{
label?: string
@@ -1,7 +1,7 @@
<script setup lang="ts">
import { ref } from 'vue'
import PropertyNumber from './PropertyNumber.vue'
import PropertyNumber from './property-number.vue'
const minValue = ref(0)
const midValue = ref(50)
@@ -1,7 +1,7 @@
<script setup lang="ts">
import { ref } from 'vue'
import RippleGrid from './RippleGrid.vue'
import RippleGrid from './index.vue'
const sections = ref([
{
@@ -1,7 +1,7 @@
<script setup lang="ts">
import { computed, ref } from 'vue'
import Alert from '../misc/Alert.vue'
import Alert from '../misc/alert.vue'
import RadioCardDetail from './RadioCardDetail.vue'
interface Item {
@@ -1,7 +1,7 @@
<script setup lang="ts">
import { computed, onBeforeUnmount, ref, watch } from 'vue'
import Alert from '../misc/Alert.vue'
import Alert from '../misc/alert.vue'
import VoiceCard from './VoiceCard.vue'
interface VoiceLanguage {
@@ -4,7 +4,7 @@ import { storeToRefs } from 'pinia'
import { inject } from 'vue'
import { useI18n } from 'vue-i18n'
import Alert from '../../../misc/Alert.vue'
import Alert from '../../../misc/alert.vue'
import { useConsciousnessStore } from '../../../../stores/modules/consciousness'
import { RadioCardManySelect } from '../../../menu'