Guest User

Untitled

a guest
Mar 19th, 2018
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. # Подключение внешних шрифтов woff2, woff, ttf (Vue.js)
  2.  
  3. `fonts.css`
  4. ```
  5. @font-face {
  6. font-family: 'Bebas Neue';
  7. src: local('Bebas Neue Thin'),
  8. local('BebasNeue-Thin'),
  9. url('bebasneuethin.woff2') format('woff2'),
  10. url('bebasneuethin.woff') format('woff'),
  11. url('bebasneuethin.ttf') format('truetype');
  12. font-weight: 100;
  13. font-style: normal;
  14. }
  15. ```
  16.  
  17. В файле инициализации корневаго инстанса Vue `app.js`
  18. ```
  19. import './assets/fonts/fonts.css'
  20. ```
Add Comment
Please, Sign In to add comment