I just embed google font to the global setting in nuxt.config.js
link: [
{ rel: \'stylesheet\', href: \'https://fonts.googleapis.com/css?family=Roboto
Update your CSS with the following rule:
body {
font-family: 'Roboto', sans-serif;
}
If you don't have CSS stylesheet setup yet, create a new file in assets directory named i.e. main.css. Inside it put the code above and save it. Then edit nuxt.config.js adding this piece of code after head object:
css: [
'@/assets/main.css'
],