从引导仅导入网格系统以做出反应

时间:2019-08-16 09:15:24

标签: reactjs bootstrap-4 react-bootstrap

我只需要在我的react应用程序中使用bootstrap中的网格系统,因为bootstrap中的默认样式会破坏我的样式。我怎么只能使用网格系统?

2 个答案:

答案 0 :(得分:0)

只需npm installyarn add boostrap包。...然后在全局css中只需导入boostrap-grid.css(或min )从dist的{​​{1}}文件夹中

答案 1 :(得分:0)

最简单的方法是从React public / index.html

引用仅网格CSS
<template>
  <fd-menu @select="goToPage">
    <fd-menu-list>
      <fd-menu-item value="1">
        Setting 1
      </fd-menu-item>
      <fd-menu-item value="2">
        Setting 2
      </fd-menu-item>
    </fd-menu-list>
  </fd-menu>
</template>

<script>
export default {
  methods: {
    goToPage(item)
    {
      this.$router.push('page' + item.value)
    }
  }
};
</script>

演示:https://codesandbox.io/s/bootstrap-4-react-hello-world-7b8xw