Open
Description
Hi!
I'm having a hard time placing the steps where I want.
I have a app built with Quasar in which I have a side Menu, much like this one:
I have set vue-tour
properties like:
data() {
return {
steps: [
{
target: '#wat',
header: {
title: 'Menu'
},
params: {
placement: 'left'
},
content: `Small content`
}
]
};
},
And it is being rendered like:
Two unexpected things:
- Having the
placement
set toleft
I was expecting the tooltip would be on the left side of the div, like popper shows. If I set it toright
it goes to the left side of the div - I was expecting the tooltip to be on the corner of the div, not in the center.
To make it worse, if I put more content in the tooltip it gets even uglier:
What am I missing? =s