question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Property "tag" was accessed during render but is not defined on instance

See original GitHub issue

I 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:closed
  • Created 2 years ago
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
Aminermancommented, May 14, 2021

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?

0reactions
Aminermancommented, May 14, 2021

Perfect 😃 That’s a good news.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found