Defining Vue component and passing Placement as one of props, gives a wrong type warning. ```js ... defineProps<{ placement: Placement; }>() ... <Test :placement="bottom-start" /> ``` <img width="1017" alt="Image" src="https://github.com/user-attachments/assets/9558e37e-f03d-474c-8ad6-335bdce326d9" /> It is wierd that it expects object because obviously Placement is supposed to be a string, here is image of type: <img width="1003" alt="Image" src="https://github.com/user-attachments/assets/d8855e86-9faa-4037-bbdb-bcb25a617e97" /> Using all latests versions Vue, FloatingUI as of today.