|
@@ -79,7 +79,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
-import { TabBarProperty, THEME_LIST } from './config'
|
|
|
+import { TabBarProperty, component, THEME_LIST } from './config'
|
|
|
import { usePropertyForm } from '@/components/DiyEditor/util'
|
|
|
// 底部导航栏
|
|
|
defineOptions({ name: 'TabBarProperty' })
|
|
@@ -88,6 +88,9 @@ const props = defineProps<{ modelValue: TabBarProperty }>()
|
|
|
const emit = defineEmits(['update:modelValue'])
|
|
|
const { formData } = usePropertyForm(props.modelValue, emit)
|
|
|
|
|
|
+// 将数据库的值更新到右侧属性栏
|
|
|
+component.property.items = formData.value.items
|
|
|
+
|
|
|
// 要的主题
|
|
|
const handleThemeChange = () => {
|
|
|
const theme = THEME_LIST.find((theme) => theme.id === formData.value.theme)
|