Currently, I am implementing v-tooltip to add tooltip text to a button. My aim is to include a line break within the tooltip text, but I have been unable to determine if this is feasible using this method. After reviewing the documentation, I did not find any mention of how to achieve a line break.
<button v-tooltip="`This is one line \n This is another line`">
The desired output for the tooltip is:
This is one line
This is another line
However, the current result displays both lines on a single line. It appears that using \n
may not be the correct approach. Are there any other suggestions or alternatives that could help me achieve the desired outcome? Thank you.