【问题标题】:How to use Google Web Fonts in VueJS app?如何在 VueJS 应用程序中使用 Google Web 字体?
【发布时间】:2020-01-29 08:14:17
【问题描述】:

我确实找到了这个插件https://github.com/gabiseabra/google-fonts-webpack-plugin

更新了使用入门工具包生成的 babel.config.js:

const GoogleFontsPlugin = require('google-fonts-webpack-plugin')

module.exports = {
  presets: [
    '@vue/app',
  ],
  plugins: [
    new GoogleFontsPlugin({
      fonts: [
        { family: 'Inconsolata' },
        { family: 'Oswald' },
      ],
      /* ...options */
    }),
  ],
};

将字体添加到#app

<template>
  <div id="app">
    <div id="nav">
      <router-link to="/">Home</router-link> |
      <router-link to="/about">About</router-link>
    </div>
    <router-view/>
  </div>
</template>

<style lang="scss">
#app {
  font-family: 'Inconsolata', 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>

但字体仍然是Arial:

https://fonts.google.com/specimen/Inconsolata?selection.family=Inconsolata

【问题讨论】:

标签: javascript vue.js vuejs2 google-fonts


【解决方案1】:

刚刚想通了,我得像这样导入:

<style lang="scss">
@import url('https://fonts.googleapis.com/css?family=Inconsolata|Oswald');
#app {
  font-family: 'Inconsolata', 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>

【讨论】:

    【解决方案2】:

    您可以使用 webpack 为 Vue JS 配置 Google Font。 使用 npm 或 yarn 作为开发依赖项安装 google-fonts-webpack-plugin。 在根文件夹中创建 webpack.config.js 文件。然后将其添加到其中:

    const GoogleFontsPlugin = require("google-fonts-webpack-plugin")
    
    module.exports = {
        "entry": "index.js",
        /* ... */
        plugins: [
            new GoogleFontsPlugin({
                fonts: [
                    { family: "Source Sans Pro" },
                    { family: "Roboto", variants: [ "400", "700italic" ] }
                ]
            })
        ]
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2011-05-15
      • 1970-01-01
      • 2019-12-27
      • 1970-01-01
      • 2020-04-17
      • 1970-01-01
      • 2011-07-18
      • 2020-05-25
      相关资源
      最近更新 更多