v2.0.0-beta.7
Pre-release
Pre-release
🔧 Bug Fixes
- styles: broken rtl spacing and text-alignment classes (6c79093)
- VApp: add missing theme propagation from $vuetify object (2589d0c)
- VTab: increase specificity of color (a9376db)
- VTabsItems: change inferred theme variant (cf180d4)
⚠️ BREAKING CHANGES
- VApp: the dark and light prop no longer have an effect on application theme variants
<!-- v1.5 src/App.vue -->
<template>
<v-app dark>
...
</v-app>
</template>
// v2.0 src/plugins/vuetify.js
import Vue from 'vue'
import Vuetify from 'vuetify'
Vue.use(Vuetify)
export default new Vuetify({
theme: { dark: true }
})