chenying

Results 4 comments of chenying

I found that the Carousel uses the 'mix-blend-overlay' CSS style property to enhance the visual effect of the indicators, but after multiple experiments, it was discovered that this property caused...

this seems to be an issue with `headlessui`

You can use try...catch... to manually catch errors and solve your problem. ``` async function validateInsideForm() { try { await form.value.validate(); } catch (error) { emits('error', error); } } ```

> > 您可以使用 try...catch... 手動捕獲錯誤並解決您的問題。 > > ``` > > async function validateInsideForm() { > > try { > > await form.value.validate(); > > } catch (error) { > >...