@xilonglab/vue-main 0.9.1 → 0.9.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xilonglab/vue-main",
3
- "version": "0.9.1",
3
+ "version": "0.9.3",
4
4
  "description": "xilong vue main",
5
5
  "main": "packages/index.js",
6
6
  "scripts": {
@@ -178,22 +178,6 @@ const { refs, api, params, obj, chartOptions, total } = inject('injections')
178
178
  :columns="columns"
179
179
  :callback="callback"
180
180
  >
181
- <el-row>
182
- <template v-for="col in columns" :key="col.prop">
183
- <xl-form-col
184
- v-if="col.form"
185
- :span="col.form.span"
186
- :l="col.label"
187
- :p="col.prop"
188
- >
189
- <component
190
- :is="`xl-${col.form.type || 'input'}`"
191
- v-model="obj[col.prop]"
192
- v-bind="col.form || {}"
193
- />
194
- </xl-form-col>
195
- </template>
196
- </el-row>
197
181
  <slot name="items" />
198
182
  </xl-data-form-dialog>
199
183
  <slot name="others" />