refactor(client): refactor components

This commit is contained in:
syuilo 2022-07-24 15:45:16 +09:00
parent bd8db402e6
commit 92f9392bcf
3 changed files with 93 additions and 119 deletions

View file

@ -18,13 +18,13 @@ export default defineComponent({
disabled: this.modelValue === option.props.value,
onClick: () => {
this.$emit('update:modelValue', option.props.value);
}
},
}, option.children), [
[resolveDirective('click-anime')]
[resolveDirective('click-anime')],
]))), [
[resolveDirective('size'), { max: [500] }]
[resolveDirective('size'), { max: [500] }],
]);
}
},
});
</script>