Skip to content
Advertisement

Vue property or method is not defined on the instance but referenced during render?

When trying this code in an online compiler it works fine but on localhost I see this problem:

Property or method “searchfunc” is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components)

main.js

JavaScript

Home.vue

JavaScript

Advertisement

Answer

This error occurs when trying to use a property or method in the template (or render function) that doesn’t exist on the component instance.

In this case it’s because searchs and searchFunc variables used in the template of Home.vue are not found below on the instance. They are in the wrong file and need to be moved into Home.vue. Data needs to also go inside the data option:

main.js

JavaScript

Home.vue

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement