We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need to set border-radius: 50% and set a border for my marker's custom icon.
<gmap-map ...> <gmap-marker v-for="item in group" title="test" icon="item.icon" position=“item.position” /> </gmap-map> <script> export default { data() { return { group: [ { position: { ... }, icon: { url: 'A' } }, { position: { ... }, icon: { url: 'B' } }, { position: { ... }, icon: { url: 'C' } }, ... ] } } } </script> <style lang="less"> div[title="test"] > img { border-radius: 50%; border: 1px solid white; } </style>
I try to use 'title' to set my img style, but it works not I want. And I try to find the DOC but I find no api to support it.
The text was updated successfully, but these errors were encountered:
I think some other css style will also meet this problem. It will not work when I try to bind a style.
Sorry, something went wrong.
No branches or pull requests
I need to set border-radius: 50% and set a border for my marker's custom icon.
I try to use 'title' to set my img style, but it works not I want. And I try to find the DOC but I find no api to support it.
The text was updated successfully, but these errors were encountered: