Vuetify: 0.17.4
Vue: 2.5.11
Browsers: Chrome 63.0.3239.84
OS: Mac OS 10.13.2
No warning should occur
warning occur
It's fixed in 1.0.0-alpha.3, if you don't want to upgrade vuetify you can downgrade vue to 2.5.10
Thanks !
Hey there,
I've already installed 1.0.0-alpha.3 and the error accures nevertheless.
Do you have a codepen producing the issue in alpha3?
Because the project is just minutes old, I've had only this two things edited
main.js:
import Vue from 'vue'
import App from './App'
import router from './router'
import Vuetify from 'vuetify'
import colors from 'vuetify/es5/util/colors'
import('../node_modules/vuetify/dist/vuetify.min.css')
Vue.use(Vuetify)
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
template: '<App/>',
components: { App }
})
App.vue:
<template>
<v-app>
<v-toolbar class="blue darken-2" dark>
<v-toolbar-side-icon class="white--text"></v-toolbar-side-icon>
<v-toolbar-title>{{ title }}</v-toolbar-title>
<v-spacer></v-spacer>
<v-btn icon>
<v-icon>more_vert</v-icon>
</v-btn>
</v-toolbar>
<router-view/>
</v-app>
</template>
<script>
//import languages
import languages from '@/env/languages.js'
export default {
name: 'app',
data() {
return {
language: '',
title: '',
}
},
created() {
this.language = languages[localStorage.getItem('userLanguage')],
this.title = this.$route.name
}
}
</script>
Hi,
Hi also have the same issue.
I am using "vue": "^2.5.11", "vuetify": "^1.0.0-Alpha.3".x

Can you guys both console.log(Vuetify.version)?
yes, done and it says [email protected]
Yet it is 1.0.0-alpha.3 in package.json so obviously I did not have the version I though I had installed :)

I have updated to version alpha-3 properly this time and it is working now!
No more error message.
Sorry for the inconvenience.
Thanks for your great work!!! Have a good week-end!
Seems to be fixed going from 0.17.4 -> 0.17.5 as well.
Most helpful comment
I have updated to version alpha-3 properly this time and it is working now!
No more error message.
Sorry for the inconvenience.
Thanks for your great work!!! Have a good week-end!