Reputation: 113
Could you explain what is $options and when to use it in vue. I've never used it and can't understand in docs. Show me please some code
Upvotes: 5
Views: 3945
Reputation: 21
$option is used for non reactive data in a vue component. Vue put hidden watcher on data members that's why we use $options .
Upvotes: 2