簡體   English   中英

如何在 VueJS 應用程序中使用 Google Web 字體?

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

我確實找到了這個插件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

剛剛想通了,我必須像這樣導入它:

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

您可以使用 webpack 為 Vue JS 配置 Google 字體。 使用 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" ] }
            ]
        })
    ]
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM