UNPKG

element-plus

Version:

A Component Library for Vue 3

36 lines (31 loc) 875 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var upload = require('./upload.js'); var runtime = require('../../../utils/vue/props/runtime.js'); var typescript = require('../../../utils/typescript.js'); var shared = require('@vue/shared'); const uploadListProps = runtime.buildProps({ files: { type: runtime.definePropType(Array), default: () => typescript.mutable([]) }, disabled: Boolean, handlePreview: { type: runtime.definePropType(Function), default: shared.NOOP }, listType: { type: String, values: upload.uploadListTypes, default: "text" }, crossorigin: { type: runtime.definePropType(String) } }); const uploadListEmits = { remove: (file) => !!file }; exports.uploadListEmits = uploadListEmits; exports.uploadListProps = uploadListProps; //# sourceMappingURL=upload-list2.js.map