18 lines
476 B
Vue
18 lines
476 B
Vue
<template>
|
|
<ComponentContainerProperty v-model="formData.style" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { UserCardProperty } from './config'
|
|
import { useVModel } from '@vueuse/core'
|
|
|
|
// 用户卡片属性面板
|
|
defineOptions({ name: 'UserCardProperty' })
|
|
|
|
const props = defineProps<{ modelValue: UserCardProperty }>()
|
|
const emit = defineEmits(['update:modelValue'])
|
|
const formData = useVModel(props, 'modelValue', emit)
|
|
</script>
|
|
|
|
<style scoped lang="scss"></style>
|