gpt4 book ai didi

twitter-bootstrap-3 - Bootstrap 表 css 不适用于 Vue.JS 组件

转载 作者:行者123 更新时间:2023-12-04 00:14:42 24 4
gpt4 key购买 nike

我在 webapp 中使用 bootstrap 和 Vue.js。但是我不能在 Vue 组件中使用 bootstrap table css。当我写

<table>
<tr class='active'>
<td>place</td>
<td>holder</td>
</tr>
</table>

在 Vue 组件之外,css 工作正常,表格格式正确。但是当我在 <template>...</tenplate> 中使用相同的代码时Vue 组件的标签, active bottstrap 表格 css 的样式不适用于表格行。

我将 Vue 组件保存在 .vue 中文件并用 webpack 编译。

怎么了?

最佳答案

添加 tbody元素到表解决了这个问题。代码现在读取

<table>
<tbody>
<tr class='active'>
<td>place</td>
<td>holder</td>
</tr>
</tbody>
</table>

CSS 现在工作正常。

关于twitter-bootstrap-3 - Bootstrap 表 css 不适用于 Vue.JS 组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40675756/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com