flame-plus 1.1.14 → 1.1.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -5,3 +5,38 @@ This template should help get you started developing with Vue 3 in Vite. The tem
5
5
  ## Recommended IDE Setup
6
6
 
7
7
  - [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
8
+
9
+
10
+ <!--
11
+ <flmDrawer :config="editDrawerConfig">
12
+ <flmModuleForm
13
+ :config="editModuleFormConfig"
14
+ @submit="edit"
15
+ @cancel="closeEditDrawer"
16
+ >
17
+ <!-- 表单插槽 -->
18
+ <template #projectName="scope">
19
+ <el-input :model-value="scope.formModel.projectName" @input="formInputValue($event, scope)"></el-input>
20
+ </template>
21
+ <!-- tab表单插槽 -->
22
+ <template #tabFormSlot="scope">
23
+ <el-input :model-value="scope.formModel.tabFormSlot" @input="formInputValue($event, scope)"></el-input>
24
+ </template>
25
+ <!-- 表格插槽 -->
26
+ <template #personInfo.testProp="scope">
27
+ <el-input :model-value="scope.row.personInfo.testProp" @input="tableInputValue($event, scope)"></el-input>
28
+ </template>
29
+ <!-- tab表格插槽 -->
30
+ <template #tabTableSlot="scope">
31
+ <el-input :model-value="scope.row.tabTableSlot" @input="tableInputValue($event, scope)"></el-input>
32
+ </template>
33
+ </flmModuleForm>
34
+ </flmDrawer>
35
+ <flmDrawer :config="readDrawerConfig">
36
+ <flmModuleForm :config="readModuleFormConfig" @submit="closeReadDrawer" @cancel="closeReadDrawer"></flmModuleForm>
37
+ </flmDrawer>
38
+ <el-button-group>
39
+ <el-button @click="openEditDrawer">编辑</el-button>
40
+ <el-button @click="openReadDrawer">查看</el-button>
41
+ </el-button-group>
42
+ -->