I need to scroll horizontally inside a lengthy list. It was possible when the list is statically implement as below.
JavaScript
x
19
19
1
<div style="margin-top:100px;white-space: nowrap;">
2
<ul >
3
<li style="display:inline">wfwe1</li>
4
<li style="display:inline">wfwe2</li>
5
<li style="display:inline">wfwe3</li>
6
<li style="display:inline">wfwe4</li>
7
<li style="display:inline">wfwe5</li>
8
<li style="display:inline">wfwe6</li>
9
<li style="display:inline">wfwe7</li>
10
<li style="display:inline">wfwe1</li>
11
<li style="display:inline">wfwe2</li>
12
<li style="display:inline">wfwe3</li>
13
<li style="display:inline">wfwe4</li>
14
<li style="display:inline">wfwe5</li>
15
<li style="display:inline">wfwe6</li>
16
<li style="display:inline">wfwe7</li>
17
</ul>
18
</div>
19
But if we fetch the list via a loop it will not display inline even. So horizontal scrolling is not possible. My attempt is as below.
JavaScript
1
12
12
1
<div
2
style="margin-top:100px;white-space: nowrap;">
3
<ul
4
v-for="(infoChildBtn, index) in infoSubContracts"
5
:key="index"
6
@click="infoTopBtnFun1(index, infoChildBtn)">
7
<li style="display:inline">
8
{{ infoChildBtn }}
9
</li>
10
</ul>
11
</div>
12
Where I was get wrong and how to resolve this?
Advertisement
Answer
The difference between your static example and your Vue example is, you are using v-for
on the ul
element. Therefore you will end up having something like this :
JavaScript
1
13
13
1
<ul>
2
<li style="display:inline">wfwe1</li>
3
</ul>
4
<ul>
5
<li style="display:inline">wfwe2</li>
6
</ul>
7
<ul>
8
<li style="display:inline">wfwe3</li>
9
</ul>
10
<ul>
11
<li style="display:inline">wfwe4</li>
12
</ul>
13
Try changing your vue template to
JavaScript
1
12
12
1
<div style="margin-top:100px;white-space: nowrap;">
2
<ul>
3
<li
4
style="display:inline"
5
v-for="(infoChildBtn, index) in infoSubContracts"
6
:key="index"
7
@click="infoTopBtnFun1(index, infoChildBtn)">
8
{{ infoChildBtn }}
9
</li>
10
</ul>
11
</div>
12
so you actually loop the li
tag, not the ul
tag.