Daybrush (Younkue Choi)
Daybrush (Younkue Choi)
@sr13579 `[data-linedrawing] svg path` is selector. See this example: https://codepen.io/daybrush/pen/QWVQWBj
@quankhuc selecto has setSelectedTargets method. If you want it to be preselected, call `setSelectedTargetes(pre-selected-targetes);`.
@quankhuc I used `setSelectedTargets` like this: ```vue import { onMounted, ref } from "vue"; import Selecto from "vue3-selecto"; import { SelectedTargets } from "selecto"; const selecto = ref(); function onSelect(e:...
@Yuzai-run vue3-selecto's new version(1.8.2) is released. Check it again.
@d2461379109 Use `innerScrollOptions` prop to `true`
@robertsLando seleco's new version is released. Check it again.
@andrea78 Oh, I found out that there is a problem with the straight line. It seems that the size was judged to be 0 and the selection was not made....
@andrea78 selecto's new version is released. Check it again.
@happy2277 hi. Try setting the `rootContainer`. To the parent parent element to which no transform is applied ```js :rootContainer="no transformed parent element or ancestor's element" ```
@quankhuc I think there is a possibility that the transform is applied to the container containing the selecto. If so, put the selecto on the parent element to which no...