npm vuetify 2.0.0-beta.7
v2.0.0-beta.7

latest releases: 3.7.2, 3.7.1, 3.7.0...
5 years ago

⚠️ For information on how to upgrade to the beta, check out the initial 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 }
})

Don't miss a new vuetify release

NewReleases is sending notifications on new releases.