fatihsolhan / v-onboarding

v-onboarding is a super-slim, fully-typed onboarding component for Vue 3
https://v-onboarding.fatihsolhan.com/
MIT License
164 stars 20 forks source link

Attributes as selector #90

Closed alniv94 closed 6 months ago

alniv94 commented 6 months ago

Is it possible to target the attribute instead of the element? For example: i have this html; <span data-test-id="chart-title" class="text-md md:text-xl">Manage Products</span> I want to target the date-test-id instead of the classes which prone to break when refactoring. Thanks

alniv94 commented 6 months ago

this work attachTo: { element: "[data-test-id='chart-title']" },