[Vue warn]: Error in render function: "TypeError: Cannot read property 'tabName' of undefined"
-
Some idea what is missing
<template>
<div>
<q-tabs v-model=“selectedTab”>
<q-tab slot=“title” name=“tab-1” icon=“message” />
<q-tab slot=“title” name=“tab-2” icon=“fingerprint” />
<q-tab slot=“title” name=“tab-3” icon=“account_box” />
</q-tabs>
<q-btn @click=“selectThirdTab”>Select Third Tab</q-btn>
</template> -
Where is the rest of your component?
Scott
-
Same than this: http://forum.quasar-framework.org/topic/611/possible-bug-in-current-beta-with-q-input/3
I posted the solution to this probelm, it’s the new Vue version 2.4.1 that breaks Quasar. -
@Epo @s-molinari As I wrote on Gitter, you need to rollback Vue package version to
2.3.4
, because the new Vue version2.4.1
breaks Quasar. Everything works fine if you put Vue at previous version.PS: you need to rollback
"vue-template-compiler"
package too (same version).