19 lines
279 B
JavaScript
19 lines
279 B
JavaScript
export default {
|
|
name: "cl-filter",
|
|
componentName: "ClFilter",
|
|
props: {
|
|
label: String
|
|
},
|
|
render() {
|
|
return (
|
|
<div class="cl-filter">
|
|
<span class="cl-filter__label" v-show={this.label}>
|
|
{this.label}
|
|
</span>
|
|
|
|
{this.$slots.default}
|
|
</div>
|
|
);
|
|
}
|
|
};
|