mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
1c34651baa
BREAKING CHANGE
21 lines
372 B
Vue
21 lines
372 B
Vue
<template>
|
|
<div>
|
|
<h1>Default layout</h1>
|
|
<nuxt />
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: local('Roboto'), local('Roboto-Regular'), url(~assets/roboto.woff2) format('woff2');
|
|
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Roboto';
|
|
}
|
|
</style>
|