Custome Vue引导程序主题不起作用

时间:2018-09-24 22:25:35

标签: vuejs2 bootstrap-4

我正在尝试使用vue引导程序,我想为我的主题设置自定义颜色,我也想允许我的用户使用按钮切换到深色主题。我安装了vue-bootstrap,我可以正常运行,然后按照bootstrap4上的说明如何自定义主题,因此我在资产文件夹中创建了custom.scss文件并添加了此代码。

$theme-colors: (
    "kimbel-prime": #091F40,
    "kimbel-success": #7FC343,
    "kimbel-warn": #C74241,
    "kimbel-danger": #6E0C2B
);

@import "node_modules/bootstrap/scss/bootstrap";

为了使用它,我在github站点上阅读了您将其全部导入app.vue

的内容。
<template>
  <div id="app">
    <div id="nav">
      <router-link to="/">Home</router-link> |
      <router-link to="/about">About</router-link>
      <b-button variant="kimbel-primary"> I am a Button </b-button>
    </div>
    <router-view/>
  </div>
</template>

<style lang="scss">
  @import "assets/custom.scss";
  @import "~bootstrap/scss/bootstrap.scss";
  @import '~bootstrap-vue/dist/bootstrap-vue.css';
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
}
#nav {
  padding: 30px;
  a {
    font-weight: bold;
    color: #2c3e50;
    &.router-link-exact-active {
      color: #42b983;
    }
  }
}
</style>

我添加了这个,希望看到我的按钮获得新的颜色,但是它仍然只有按钮颜色,这对我的帮助非常感谢,这是我第一次尝试使用vue,所以请原谅我所缺少的任何东西。我认为在完成这项工作后,我可以解决切换到深色主题的问题。

0 个答案:

没有答案