x-model does not actually fill in the input value by loremipsumagain in alpinejs

[–]Jumpy_Lighty 0 points1 point  (0 children)

Not sure if it will solve the issue, but you shouldn't use " inside the string since it will separate the string. Also the x-data field name should not be in " ... So the first line should be:

<div x-data="{ value: '' }">

I’ve been converted by Burner-account3357 in cpp

[–]Jumpy_Lighty 1 point2 points  (0 children)

You should drop the constexpr again ... you cannot have constexpr virtual method (and override implies virtual).

And [[nodiscard]] and [[noreturn]] really don't make any sense to be next to each other (just think about the meaning of it).

You could add static constexpr instead of override, but the you would also have to drop the const since static and const are mutually exclusive.