Property "tag" was accessed during render but is not defined on instance
See original GitHub issueI just installed lastest vue-kinesis version 2.0.4 and tried to use it in my Vue 3 project as follows:
yarn add vue-kinesis@next
import { createApp } from 'vue';
import VueKinesis from 'vue-kinesis';
import App from './App.vue';
createApp(App)
.use(VueKinesis)
.mount('#app');
<kinesis-container>
<kinesis-element :strength="10">
<Project />
</kinesis-element>
</kinesis-container>
Where Project
is one of my vue components, which is not displayed and i get the following warnings in the console:
runtime-core.esm-bundler.js:38 [Vue warn]: Property "tag" was accessed during render but is not defined on instance.
at <KinesisContainer>
at <MainContent>
at <App>
runtime-core.esm-bundler.js:38 [Vue warn]: Property "style" was accessed during render but is not defined on instance.
at <KinesisContainer>
at <MainContent>
at <App>
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
[Vue warn]: Property or method is not defined on the instance ...
Problem. [Vue warn]: Property or method "changeSetting" is not defined on the instance but referenced during render.
Read more >[vue3] Property xxx was accessed during render but is not ...
In Vue.js, the error generally means you are referring to a variable which could be a data, prop, method or computed property in...
Read more >Data was accessed during render but is not defined on instance
Hi, can anyone help me with this error message? What I'm trying to do is getting data from the database and display it...
Read more >Property or Method is Not Defined - Michael Thiessen
The full message is this: [Vue warn]: Property or method "prop" is not defined on the instance but referenced during render. Make sure...
Read more >Property "message" was accessed during render but is not ...
Property "message" was accessed during render but is not defined on instance. - Vue 3 & TypeScript #451. Closed.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
What if you set it to true?
That’s something I’m not aware of. If I understand well, you’re dropping the options API, but kinesis uses it. But I don’t know what to do in this case. Should I change all the code so it works with the composition API? It will take some time. I mean, it would mean that all the plugins should be migrated to the composition API just to take into account this use case? I don’t know what to think about this.
Let me know if setting it to true changes anything?
Perfect 😃 That’s a good news.