Webpack packages html with v-for

novices are not very good at vue or webpack. Ask for help.

only a small part of the html code is written by vue and jquery. Because only a small number of people use vue and do not use vue-cli, but there is no error when packing with webpack locally, but it is wrong to run the Times

.
   <table class="table table-borderless" style="word-break:break-all" v-for="artValue in artList" @click="getArtDetail(artValue)">
                <tr>
                    <td class="listTdHeight middleClass tableCutOffClass">
                        <img v-bind:src="artValue.icon_url" alt="" class="iconClass" />
                    </td>
                    <td class="middleClass tableCutOffClass">
                        <div class="artistCenter">
                            <span class="artNameFont">{{artValue.art_name}}</span><br>
                            <span class="artAuthorFont">{{artValue.author}}</span>
                        </div>
                    </td>
                </tr>
                <tr style="display: none">
                    <td id="artValueId">{{artValue.art_id}}</td>
                    <td id="artValueOwner">{{artValue.owner}}</td>
                </tr>
            </table>

clipboard.png

clipboard.png

jsv-for

clipboard.png

Excuse me, where is the problem?

May.12,2021

first solve the problem of library file path
step by step
in addition, why do you use vue when you use jquery

Menu