@vuesax-alpha/nightly
Version:
A Component Library for Vue 3
27 lines (24 loc) • 513 B
JavaScript
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