0
Vuetify has built-in support for css-loader
, so you can import * from 'css-library'
(or whatever you’re trying to import).
Vuetify-specific (a-la-carte) components each have intuitive classes which you can modify in <style>
or imported css, for example:
<template>
<v-btn></v-btn>
</template>
<style>
.v-btn {
padding: 0;
}
</style>
- [Vuejs]-Vue / Vuetify: get dimensions of v-flex
- [Vuejs]-VueJS not setting properties after ajax call in mounted function
Source:stackexchange.com