14 lines
254 B
Vue
14 lines
254 B
Vue
|
|
<template>
|
||
|
|
<!-- No changes to template section -->
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup>
|
||
|
|
defineProps({
|
||
|
|
formManager: { type: Object, required: true },
|
||
|
|
theme: { type: Object, required: false }
|
||
|
|
})
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
/* No changes to style section */
|
||
|
|
</style>
|