fix: build

This commit is contained in:
Neko Ayaka
2025-07-24 01:41:03 +08:00
parent 39fc710fce
commit 9c46d9410f
4 changed files with 7 additions and 7 deletions
@@ -9,7 +9,7 @@ const props = defineProps<{
}>()
const { stageView, stageViewControlsEnabled } = storeToRefs(useSettings())
const { scale: vrmScale, cameraPosition: vrmPosition, modelSize: vrmModelSize } = storeToRefs(useVRM())
const { scale: vrmScale, modelOffset: vrmPosition, modelSize: vrmModelSize } = storeToRefs(useVRM())
const { scale: live2dScale, position: live2dPosition } = storeToRefs(useLive2d())
const viewControlsValueX = computed({
@@ -1,4 +1,4 @@
export { default as Container } from './Container.vue'
export { default as Pane } from './Pane.vue'
export { default as PropertyNumber } from './PropertyNumber.vue'
export { default as PropertyPoint } from './PropertyPoint.vue'
export { default as Section } from './Section.vue'
@@ -6,7 +6,7 @@ import { ref } from 'vue'
import { useI18n } from 'vue-i18n'
import { useVRM } from '../../../../stores'
import { PropertyNumber, PropertyPoint, Section } from '../../../DataPane'
import { Container, PropertyNumber, PropertyPoint } from '../../../DataPane'
import { Callout } from '../../../Layouts'
import { Button } from '../../../Misc'
import { ColorPalette } from '../../../Widgets'
@@ -71,7 +71,7 @@ function urlUploadClick() {
</script>
<template>
<Section
<Container
:title="t('settings.pages.models.sections.section.scene')"
icon="i-solar:people-nearby-bold-duotone"
:class="[
@@ -114,8 +114,8 @@ function urlUploadClick() {
:label="t('settings.vrm.scale-and-position.rotation-y')"
/>
</div>
</Section>
<Section
</Container>
<Container
:title="t('settings.vrm.change-model.title')"
icon="i-solar:magic-stick-3-bold-duotone"
inner-class="text-sm"
@@ -171,5 +171,5 @@ function urlUploadClick() {
{{ t('settings.vrm.scale-and-position.tips') }}
</div>
</Callout>
</Section>
</Container>
</template>