UNPKG

@vuesax-alpha/nightly

Version:
27 lines (24 loc) 513 B
import '../../../utils/index.mjs'; import { buildProps } from '../../../utils/vue/props/runtime.mjs'; const chipProps = buildProps({ disabled: { type: Boolean }, hit: { type: Boolean, default: false }, shape: { type: String, values: ["square"], default: "" }, showClose: { type: Boolean, default: true } }); const chipEmits = { click: (e) => e instanceof Event, close: (e) => e instanceof Event }; export { chipEmits, chipProps }; //# sourceMappingURL=chip.mjs.map