index.html
<div class="center-table-wrapper"> <%= require('html-loader!../components/systemMainTab/index.html') %></div>
systemMainTab/index.html
<div class="containerDY"> <div class="container-list"> <div class="container-table"> <table id="showTable" style="width:100%"></table> </div> <div class="container-pagination"> <!-- 无法引入html 内容 --> <%= require('html-loader!../systemPagination/index.html') %> </div> </div> <!-- <div class="container-dy"> </div> --></div>
systemPagination/index.html
<div class="system-pagination"></div>
第一层 <%= require('html-loader!../components/systemMainTab/index.html') %>
能正常引入, 而systemMainTab/index.html
的 <%= require('html-loader!../systemPagination/index.html') %>
未能解析, 有什么方法能嵌套解析否?
一种方式是通过 js 来引入模块在组装, 不过这种方式实现不佳
慕标5832272
相关分类