Is there a way to render these 2 templates in one line in Pug?
JavaScript
x
20
20
1
v-flex.compact
2
p(id='correspondence-comment-content' v-html='displayContent')
3
span
4
template(v-if='correspondence.createdBy === currentUser && isTicketEditable')
5
a(@click='openEditDialog')
6
| Edit
7
template
8
span
9
v-tooltip(top)
10
template(#activator='{ on: ontooltip }' #prepend)
11
v-btn.float-right(
12
id='copyButton'
13
ref='copyBtn'
14
x-small
15
v-on='{...ontooltip}'
16
@click='copyContent'
17
)
18
v-icon(small color='grey darken-2' right) $vuetify.icons.faCopy
19
span Copy content
20
I have been trying with adding span
or moving the code around but not able to fix it yet. This code renders but in 2 rows, I essentially want this code in one row.
Any ideas are helpful! Thanks 🙂
Advertisement
Answer
I actually figured this with the help of a colleague
Adding a v-flex.compact
above the 2 templates worked, as below:
JavaScript
1
21
21
1
v-flex.compact
2
p(id='correspondence-comment-content' v-html='displayContent')
3
span
4
v-flex.compact
5
template(v-if='correspondence.createdBy === currentUser && isTicketEditable')
6
a(@click='openEditDialog')
7
| Edit
8
template
9
span
10
v-tooltip(top)
11
template(#activator='{ on: ontooltip }' #prepend)
12
v-btn.float-right(
13
id='copyButton'
14
ref='copyBtn'
15
x-small
16
v-on='{...ontooltip}'
17
@click='copyContent'
18
)
19
v-icon(small color='grey darken-2' right) $vuetify.icons.faCopy
20
span Copy content
21