简体   繁体   English

如何在 VueJS 应用程序中使用 Google Web 字体?

[英]How to use Google Web Fonts in VueJS app?

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

Updated the babel.config.js that was generated with the starter kit:更新了使用入门工具包生成的 babel.config.js:

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

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

Add the font to the #app class将字体添加到#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>

But font is still Arial:但字体仍然是 Arial:

在此处输入图片说明

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

Just figured it out, I have to import it like so:刚刚想通了,我必须像这样导入它:

<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>

You can use webpack to configure Google Font for Vue JS.您可以使用 webpack 为 Vue JS 配置 Google 字体。 Install google-fonts-webpack-plugin using npm or yarn as a dev dependency.使用 npm 或 yarn 作为开发依赖项安装 google-fonts-webpack-plugin。 Create webpack.config.js file inside root folder.在根文件夹中创建 webpack.config.js 文件。 Then add this into it:然后将其添加到其中:

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" ] }
            ]
        })
    ]
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM