0👍
Simply create a class:
<template>
<v-text-field
class="custom-field"
placeholder="What are you looking for"
outliend
filled
></v-text-field>
</template
<style lang="scss" scoped>
.custom-field {
padding: 0px!important;
}
</style>
And if you want more customization, please use your own theme in Vuetify object in main.js: documentation here.
- [Vuejs]-Synching validations between front-end and back-end projects
- [Vuejs]-How do i iterate over API response in Vue.js?
Source:stackexchange.com