Vue 3 + Vite
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 <script setup> SFCs, check out the script setup docs to learn more.
Recommended IDE Setup
<template #projectName="scope">
<el-input :model-value="scope.formModel.projectName" @input="formInputValue($event, scope)"></el-input>
</template>
<!-- tab表单插槽 -->
<template #tabFormSlot="scope">
<el-input :model-value="scope.formModel.tabFormSlot" @input="formInputValue($event, scope)"></el-input>
</template>
<!-- 表格插槽 -->
<template #personInfo.testProp="scope">
<el-input :model-value="scope.row.personInfo.testProp" @input="tableInputValue($event, scope)"></el-input>
</template>
<!-- tab表格插槽 -->
<template #tabTableSlot="scope">
<el-input :model-value="scope.row.tabTableSlot" @input="tableInputValue($event, scope)"></el-input>
</template>
</flmModuleForm>
编辑
查看
-->