| 1234567891011121314151617181920 |
- // ImageFormItems.vue - Form items specific to the h5-image component
- <template>
- <div>
- <el-form-item label="图片">
- <image-upload v-model="config.url" :file-type='["png", "jpg", "jpeg", "gif"]' :limit="1"/>
- </el-form-item>
- </div>
- </template>
- <script>
- export default {
- name: 'ImageFormItems',
- props: {
- config: {
- type: Object,
- required: true
- }
- }
- }
- </script>
|