styled-components / vue-styled-components

Visual primitives for the component age. A simple port for Vue of styled-components 💅
MIT License
1.39k stars 99 forks source link

Note for vuetify #105

Closed tonipepperoni closed 4 years ago

tonipepperoni commented 4 years ago

If you want to use Vuetify you should use a-la-carte, and do the following as an example:

import styled from 'vue-styled-components'

import VBtn from 'vuetify/es5/components/VBtn'

const AppBtn = styled(VBtn.options)`background: red`

export default AppBtn
liqueflies commented 4 years ago

Thank you for reporting.