【发布时间】: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
【问题讨论】:
-
只需将 Google 字体样式表添加到您要渲染到的主 .html 文件中。
-
你可以像 bootstrap 一样在 scss 模式下使用
@import语句(如果你使用 vue-loader 和 sass-loader 库)
标签: javascript vue.js vuejs2 google-fonts