0👍
In a standard vue cli framework, the app.vue
file is a good source of truth
for app level styles.
In app.vue
<style lang='scss'>
@import url("https://use.typekit.net/upu2cxc.css");
$font-family-sans-serif: proxima-nova, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
$font-family-sans-serif-extra-condensed: proxima-nova-extra-condensed, -apple-system, sans-serif;
$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
$font-family-serif: Georgia, serif;
$font-family-base: $font-family-sans-serif;
</style>
- [Vuejs]-Should I be using a computed property here?
- [Vuejs]-How to embed an element-ui component into a vuetify component?
Source:stackexchange.com